Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 640 for IsSame (0.09 sec)

  1. src/runtime/runtime.go

    // Do not remove or change the type signature.
    // (See go.dev/issue/57336.)
    //
    // getAuxv should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/cilium/ebpf
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname getAuxv
    func getAuxv() []uintptr { return auxv }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. cni/pkg/plugin/plugin_test.go

    	if err == nil {
    		t.Fatal("expected to fail, but did not!")
    	}
    
    	return mockRedir
    }
    
    func testDoAddRun(t *testing.T, stdinData, nsName string, objects ...runtime.Object) *mockInterceptRuleMgr {
    	args := buildCmdArgs(stdinData, testPodName, nsName)
    
    	conf, err := parseConfig(args.StdinData)
    	if err != nil {
    		t.Fatalf("config parse failed with error: %v", err)
    	}
    
    	// Create a kube client
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. pkg/apis/flowcontrol/validation/validation.go

    func ValidateFlowSchemaUpdate(old, fs *flowcontrol.FlowSchema) field.ErrorList {
    	return ValidateFlowSchema(fs)
    }
    
    // ValidateFlowSchemaSpec validates the content of flow-schema's spec
    func ValidateFlowSchemaSpec(fsName string, spec *flowcontrol.FlowSchemaSpec, fldPath *field.Path) field.ErrorList {
    	var allErrs field.ErrorList
    	if spec.MatchingPrecedence <= 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_node_status.go

    		if podCIDRChanged, err = kl.updatePodCIDR(ctx, podCIDRs); err != nil {
    			klog.ErrorS(err, "Error updating pod CIDR")
    		}
    	}
    
    	areRequiredLabelsNotPresent := false
    	osName, osLabelExists := node.Labels[v1.LabelOSStable]
    	if !osLabelExists || osName != goruntime.GOOS {
    		if len(node.Labels) == 0 {
    			node.Labels = make(map[string]string)
    		}
    		node.Labels[v1.LabelOSStable] = goruntime.GOOS
    		areRequiredLabelsNotPresent = true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  5. pkg/controller/tainteviction/taint_eviction_test.go

    			controller.PodUpdated(nil, item.prevPod)
    
    			if item.awaitForScheduledEviction {
    				nsName := types.NamespacedName{Namespace: item.prevPod.Namespace, Name: item.prevPod.Name}
    				err := wait.PollImmediate(time.Millisecond*10, time.Second, func() (bool, error) {
    					scheduledEviction := controller.taintEvictionQueue.GetWorkerUnsafe(nsName.String())
    					return scheduledEviction != nil, nil
    				})
    				if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 31.3K bytes
    - Viewed (0)
  6. src/go/doc/comment/parse.go

    		1<<'[' |
    		1<<']' |
    		1<<'{' |
    		1<<'}' |
    		1<<'%'
    
    	return ((uint64(1)<<c)&(mask&(1<<64-1)) |
    		(uint64(1)<<(c-64))&(mask>>64)) != 0
    }
    
    // isName reports whether s is a capitalized Go identifier (like Name).
    func isName(s string) bool {
    	t, ok := ident(s)
    	if !ok || t != s {
    		return false
    	}
    	r, _ := utf8.DecodeRuneInString(s)
    	return unicode.IsUpper(r)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  7. src/crypto/tls/cipher_suites.go

    	aead   func(key, fixedNonce []byte) aead
    	hash   crypto.Hash
    }
    
    // cipherSuitesTLS13 should be an internal detail,
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/quic-go/quic-go
    //   - github.com/sagernet/quic-go
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname cipherSuitesTLS13
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. src/runtime/sys_darwin.go

    // Do not remove or change the type signature.
    //
    // syscall.syscall6 is meant for package syscall (and x/sys),
    // but widely used packages access it using linkname.
    // Notable members of the hall of shame include:
    //   - github.com/tetratelabs/wazero
    //
    // See go.dev/issue/67401.
    //
    //go:linkname syscall_syscall6 syscall.syscall6
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

         * supplied object is the root. Expressions like 'child.name' will translate into
         * 'rootObject.getChild().getName()' for non-boolean properties, and
         * 'rootObject.getChild().isName()' for boolean properties.
         */
        public static class ObjectBasedValueSource extends AbstractValueSource {
    
            private final Object root;
    
            /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/s390x/a.out.go

    // THE SOFTWARE.
    
    package s390x
    
    import "cmd/internal/obj"
    
    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p s390x
    
    const (
    	NSNAME = 8
    	NSYM   = 50
    	NREG   = 16 // number of general purpose registers
    	NFREG  = 16 // number of floating point registers
    )
    
    const (
    	// General purpose registers (GPRs).
    	REG_R0 = obj.RBaseS390X + iota
    	REG_R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 16:41:03 UTC 2023
    - 12.4K bytes
    - Viewed (0)
Back to top