Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 379 for unmix (0.2 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/ppc64le/include /tmp/ppc64le/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build ppc64le && linux
    
    package unix
    
    const (
    	SYS_RESTART_SYSCALL         = 0
    	SYS_EXIT                    = 1
    	SYS_FORK                    = 2
    	SYS_READ                    = 3
    	SYS_WRITE                   = 4
    	SYS_OPEN                    = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cache/cache.go

    		return missing(fmt.Errorf("parsing timestamp: %v", err))
    	} else if tm < 0 {
    		return missing(errors.New("negative timestamp"))
    	}
    
    	c.used(c.fileName(id, "a"))
    
    	return Entry{buf, size, time.Unix(0, tm)}, nil
    }
    
    // GetFile looks up the action ID in the cache and returns
    // the name of the corresponding data file.
    func GetFile(c Cache, id ActionID) (file string, entry Entry, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build zos && s390x
    
    // Hand edited based on zerrors_linux_s390x.go
    // TODO: auto-generate.
    
    package unix
    
    const (
    	BRKINT                   = 0x0001
    	CLOCAL                   = 0x1
    	CLOCK_MONOTONIC          = 0x1
    	CLOCK_PROCESS_CPUTIME_ID = 0x2
    	CLOCK_REALTIME           = 0x0
    	CLOCK_THREAD_CPUTIME_ID  = 0x3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/script/engine.go

    // (which can change based on its registration).
    type CmdUsage struct {
    	Summary string   // in the style of the Name section of a Unix 'man' page, omitting the name
    	Args    string   // a brief synopsis of the command's arguments (only)
    	Detail  []string // zero or more sentences in the style of the Description section of a Unix 'man' page
    
    	// If Async is true, the Cmd is meaningful to run in the background, and its
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  5. pkg/controller/podgc/gc_controller_test.go

    			_, ctx := ktesting.NewTestContext(t)
    			featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, features.PodDisruptionConditions, test.enablePodDisruptionConditions)
    			creationTime := time.Unix(0, 0)
    			nodes := []*v1.Node{testutil.NewNode("node")}
    
    			pods := make([]*v1.Pod, 0, len(test.pods))
    			for _, pod := range test.pods {
    				creationTime = creationTime.Add(1 * time.Hour)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
  6. src/runtime/string.go

    	}
    	s, b := rawstring(l)
    	memmove(unsafe.Pointer(&b[0]), unsafe.Pointer(p), uintptr(l))
    	return s
    }
    
    // internal_syscall_gostring is a version of gostring for internal/syscall/unix.
    //
    //go:linkname internal_syscall_gostring internal/syscall/unix.gostring
    func internal_syscall_gostring(p *byte) string {
    	return gostring(p)
    }
    
    func gostringn(p *byte, l int) string {
    	if l == 0 {
    		return ""
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  7. src/runtime/HACKING.md

    user Go code executes on. User stacks start small (e.g., 2K) and grow
    or shrink dynamically.
    
    Every M has a *system stack* associated with it (also known as the M's
    "g0" stack because it's implemented as a stub G) and, on Unix
    platforms, a *signal stack* (also known as the M's "gsignal" stack).
    System and signal stacks cannot grow, but are large enough to execute
    runtime and cgo code (8K in a pure Go binary; system-allocated in a
    cgo binary).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. pkg/apis/core/fuzzer/fuzzer.go

    			c.FuzzNoCustom(s)
    			s.Allocatable = s.Capacity
    		},
    		func(e *core.Event, c fuzz.Continue) {
    			c.FuzzNoCustom(e)
    			e.EventTime = metav1.MicroTime{Time: time.Unix(1, 1000)}
    			if e.Series != nil {
    				e.Series.LastObservedTime = metav1.MicroTime{Time: time.Unix(3, 3000)}
    			}
    		},
    		func(j *core.GRPCAction, c fuzz.Continue) {
    			empty := ""
    			if j.Service == nil {
    				j.Service = &empty
    			}
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 04:32:01 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/386/include -m32 /tmp/386/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build 386 && linux
    
    package unix
    
    const (
    	SYS_RESTART_SYSCALL              = 0
    	SYS_EXIT                         = 1
    	SYS_FORK                         = 2
    	SYS_READ                         = 3
    	SYS_WRITE                        = 4
    	SYS_OPEN                         = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go

    // go run linux/mksysnum.go -Wall -Werror -static -I/tmp/ppc/include /tmp/ppc/include/asm/unistd.h
    // Code generated by the command above; see README.md. DO NOT EDIT.
    
    //go:build ppc && linux
    
    package unix
    
    const (
    	SYS_RESTART_SYSCALL              = 0
    	SYS_EXIT                         = 1
    	SYS_FORK                         = 2
    	SYS_READ                         = 3
    	SYS_WRITE                        = 4
    	SYS_OPEN                         = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top