Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 6,874 for Uncommon (0.11 sec)

  1. src/runtime/mfinal.go

    	}
    	fint := ft.InSlice()[0]
    	switch {
    	case fint == etyp:
    		// ok - same type
    		goto okarg
    	case fint.Kind_&abi.KindMask == abi.Pointer:
    		if (fint.Uncommon() == nil || etyp.Uncommon() == nil) && (*ptrtype)(unsafe.Pointer(fint)).Elem == ot.Elem {
    			// ok - not same type, but both pointers,
    			// one or the other is unnamed, and same element type, so assignable.
    			goto okarg
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/text/scanner/scanner.go

    // that only a minimal amount of work needs to be done in the common ASCII
    // case (one test to check for both ASCII and end-of-buffer, and one test
    // to check for newlines).
    func (s *Scanner) next() rune {
    	ch, width := rune(s.srcBuf[s.srcPos]), 1
    
    	if ch >= utf8.RuneSelf {
    		// uncommon case: not ASCII or not enough bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/upgrade/compute_test.go

    						EtcdVersion:    getEtcdVersion(v1Z0rc1),
    					},
    				},
    			},
    			allowRCs:    true,
    			errExpected: false,
    		},
    		{
    			name: "it is possible (but very uncommon) that the latest version from the previous branch is an rc and the current latest version is alpha.0. In that case, show the RC",
    			vg: &fakeVersionGetter{
    				clusterVersion:   v1X5.String(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  4. src/runtime/stkframe.go

    }
    
    // argBytes returns the argument frame size for a call to frame.fn.
    func (frame *stkframe) argBytes() uintptr {
    	if frame.fn.args != abi.ArgsSizeUnknown {
    		return uintptr(frame.fn.args)
    	}
    	// This is an uncommon and complicated case. Fall back to fully
    	// fetching the argument map to compute its size.
    	argMap, _ := frame.argMapInternal()
    	return uintptr(argMap.n) * goarch.PtrSize
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/ingress/controller.go

    		// pick an arbitrary but consistent ordering based on name and namespace, which is unique.
    		// CreationTimestamp is stored in seconds, so this is not uncommon.
    		if ingr[i].CreationTimestamp == ingr[j].CreationTimestamp {
    			in := ingr[i].Name + "." + ingr[i].Namespace
    			jn := ingr[j].Name + "." + ingr[j].Namespace
    			return in < jn
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

         *       <li>Otherwise, place the test directory on the module-path. However, this case
         *           (a module existing only in test output, not in main output) should be uncommon.</li>
         *     </ul>
         *   </li>
         *   <li>Otherwise (test output contains no module information), then:
         *     <ul>
         *       <li>If the main output is on the module-path, place the test output
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/AbstractSourcesAndJavadocJarsIntegrationTest.groovy

            module.configuration("default")
            module.configuration("sources")
            module.configuration("javadoc")
            module.artifact(conf: "default")
            // use uncommon sources and javadoc classifiers to prove that artifact names don't matter
            module.artifact(type: "source", classifier: "my-sources", ext: "jar", conf: "sources")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  8. pilot/pkg/model/config.go

    		// pick an arbitrary but consistent ordering based on name and namespace, which is unique.
    		// CreationTimestamp is stored in seconds, so this is not uncommon.
    		if configs[i].CreationTimestamp == configs[j].CreationTimestamp {
    			in := configs[i].Name + "." + configs[i].Namespace
    			jn := configs[j].Name + "." + configs[j].Namespace
    			return in < jn
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. pkg/registry/batch/job/strategy.go

    func generateSelector(obj *batch.Job) {
    	if obj.Spec.Template.Labels == nil {
    		obj.Spec.Template.Labels = make(map[string]string)
    	}
    	// The job-name label is unique except in cases that are expected to be
    	// quite uncommon, and is more user friendly than uid.  So, we add it as
    	// a label.
    	jobNameLabels := []string{batch.LegacyJobNameLabel, batch.JobNameLabel}
    	for _, value := range jobNameLabels {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 16:43:24 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. src/runtime/heapdump.go

    		b.t[j] = b.t[j-1]
    	}
    	b.t[0] = t
    
    	// dump the type
    	dumpint(tagType)
    	dumpint(uint64(uintptr(unsafe.Pointer(t))))
    	dumpint(uint64(t.Size_))
    	rt := toRType(t)
    	if x := t.Uncommon(); x == nil || rt.nameOff(x.PkgPath).Name() == "" {
    		dumpstr(rt.string())
    	} else {
    		pkgpath := rt.nameOff(x.PkgPath).Name()
    		name := rt.name()
    		dumpint(uint64(uintptr(len(pkgpath)) + 1 + uintptr(len(name))))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
Back to top