Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 5,267 for Uncommon (0.35 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. pkg/kubelet/kubelet_pods_test.go

    				metrics.RestartedPodTotal.FQName(): `# HELP kubelet_restarted_pods_total [ALPHA] Number of pods that have been restarted because they were deleted and recreated with the same UID while the kubelet was watching them (common for static pods, extremely uncommon for API pods)
    				# TYPE kubelet_restarted_pods_total counter
    				kubelet_restarted_pods_total{static=""} 1
    				kubelet_restarted_pods_total{static="true"} 0
    				`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. src/runtime/iface.go

    // (although it will only be called once with firstTime==true).
    func itabInit(m *itab, firstTime bool) string {
    	inter := m.Inter
    	typ := m.Type
    	x := typ.Uncommon()
    
    	// both inter and typ have method sorted by name,
    	// and interface names are unique,
    	// so can iterate over both in lock step;
    	// the loop is O(ni+nt) not O(ni*nt).
    	ni := len(inter.Methods)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  10. docs/en/docs/alternatives.md

    It was not based on a standard like OpenAPI and JSON Schema. So it wouldn't be straightforward to integrate it with other tools, like Swagger UI. But again, it was a very innovative idea.
    
    It has an interesting, uncommon feature: using the same framework, it's possible to create APIs and also CLIs.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top