Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 6,932 for uncommon (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/kubelet/metrics/metrics.go

    			Name:           RestartedPodTotalKey,
    			Help:           "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)",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"static"},
    	)
    	// StartedPodsTotal is a counter that tracks pod sandbox creation operations
    	StartedPodsTotal = metrics.NewCounter(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/func.go

    	CanonicalLocalSlots  map[LocalSlot]*LocalSlot
    	CanonicalLocalSplits map[LocalSlotSplitKey]*LocalSlot
    
    	// RegArgs is a slice of register-memory pairs that must be spilled and unspilled in the uncommon path of function entry.
    	RegArgs []Spill
    	// OwnAux describes parameters and results for this function.
    	OwnAux *AuxCall
    	// CloSlot holds the compiler-synthesized name (".closureptr")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/CacheBuilder.java

     * the License.
     */
    
    package com.google.common.cache;
    
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.base.Preconditions.checkState;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.base.Ascii;
    import com.google.common.base.Equivalence;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. pilot/pkg/model/push_context.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.
    		an := a.Attributes.Name + "." + a.Attributes.Namespace
    		bn := b.Attributes.Name + "." + b.Attributes.Namespace
    		return cmp.Compare(an, bn)
    	})
    	return services
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/CacheBuilder.java

     * the License.
     */
    
    package com.google.common.cache;
    
    import static com.google.common.base.Preconditions.checkArgument;
    import static com.google.common.base.Preconditions.checkNotNull;
    import static com.google.common.base.Preconditions.checkState;
    
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.base.Ascii;
    import com.google.common.base.Equivalence;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    To support other types of tests, simple add more source sets and link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html[Test] tasks.
    
    [[migmvn:common_plugins]]
    == Migrating common plugins
    
    Maven and Gradle share a common approach of extending the build through plugins.
    Although the plugin systems are very different beneath the surface, they share many feature-based plugins, such as:
    
    * Shade/Shadow
    * Jetty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/order.go

    		// The exception is ranging over an array value
    		// (not a slice, not a pointer to array),
    		// which must make a copy to avoid seeing updates made during
    		// the range body. Ranging over an array value is uncommon though.
    
    		// Mark []byte(str) range expression to reuse string backing storage.
    		// It is safe because the storage cannot be mutated.
    		n := n.(*ir.RangeStmt)
    		if x, ok := n.X.(*ir.ConvExpr); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 02:00:33 UTC 2024
    - 42.7K bytes
    - Viewed (0)
Back to top