Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 190 for too (0.03 sec)

  1. pkg/controller/disruption/disruption_test.go

    	testCases := map[string]struct {
    		labelSelector *metav1.LabelSelector
    	}{
    		"illegal value key": {
    			labelSelector: &metav1.LabelSelector{
    				MatchLabels: map[string]string{
    					"k8s.io/too/many/slashes": "value",
    				},
    			},
    		},
    		"illegal operator": {
    			labelSelector: &metav1.LabelSelector{
    				MatchExpressions: []metav1.LabelSelectorRequirement{
    					{
    						Key:      "foo",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server_test.go

    	}{
    		"no port":                       {port: "", shouldError: true},
    		"none number port":              {port: "abc", shouldError: true},
    		"negative port":                 {port: "-1", shouldError: true},
    		"too large port":                {port: "65536", shouldError: true},
    		"0 port":                        {port: "0", shouldError: true},
    		"min port":                      {port: "1", shouldError: false},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    	// OpenBSD.
    	physPageAlignedStacks = GOOS == "openbsd"
    )
    
    // Main malloc heap.
    // The heap itself is the "free" and "scav" treaps,
    // but all the other global data is here too.
    //
    // mheap must not be heap-allocated because it contains mSpanLists,
    // which must not be heap-allocated.
    type mheap struct {
    	_ sys.NotInHeap
    
    	// lock must only be acquired on the system stack, otherwise a g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

        // Currently this is more on the conservative side since we need to ensure
        // every consumer op to be a TF op before applying this pattern. We can
        // consider to revisit this in the future if this turns out to be too
        // restrictive.
        for (Operation *user : identity->getUsers()) {
          if (user->getDialect()->getNamespace() != "tf") {
            return failure();
          }
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                        configurationProcessor.process(cliRequest);
                    }
                }
            } else if (userSuppliedConfigurationProcessorCount > 1) {
                //
                // There are too many ConfigurationProcessors so we don't know which one to run so report the error.
                //
                StringBuilder sb = new StringBuilder(String.format(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/ImmutableSortedMap.java

        throw new InvalidObjectException("Use SerializedForm");
      }
    
      // This class is never actually serialized directly, but we have to make the
      // warning go away (and suppressing would suppress for all nested classes too)
      private static final long serialVersionUID = 0;
    
      /**
       * Not supported. Use {@link #toImmutableSortedMap}, which offers better type-safety, instead.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	}
    
    	if gv.Group == v.structuralSchemaGK.Group && kind == v.structuralSchemaGK.Kind {
    		if !v.preserveUnknownFields {
    			// TODO: switch over pruning and coercing at the root to schemaobjectmeta.Coerce too
    			pruneOpts := structuralschema.UnknownFieldPathOptions{}
    			if v.returnUnknownFieldPaths {
    				pruneOpts.TrackUnknownFieldPaths = true
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  8. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    	//    be less than the node health signal update frequency, since there will
    	//    only be fresh values from Kubelet at an interval of node health signal
    	//    update frequency.
    	// 2. nodeMonitorGracePeriod can't be too large for user experience - larger
    	//    value takes longer for user to see up-to-date node health.
    	nodeMonitorGracePeriod time.Duration
    
    	// Number of workers Controller uses to process node monitor health updates.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  9. src/os/os_test.go

    	}
    	file.Close()
    }
    
    func TestLongSymlink(t *testing.T) {
    	testenv.MustHaveSymlink(t)
    
    	defer chtmpdir(t)()
    	s := "0123456789abcdef"
    	// Long, but not too long: a common limit is 255.
    	s = s + s + s + s + s + s + s + s + s + s + s + s + s + s + s
    	from := "longsymlinktestfrom"
    	err := Symlink(s, from)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    						canLiveOnStack.add(arg.ID)
    					}
    				}
    			}
    		}
    	}
    
    	// The clobberdeadreg experiment inserts code to clobber dead registers
    	// at call sites.
    	// Ignore huge functions to avoid doing too much work.
    	if base.Flag.ClobberDeadReg && len(s.f.Blocks) <= 10000 {
    		// TODO: honor GOCLOBBERDEADHASH, or maybe GOSSAHASH.
    		s.doClobber = true
    	}
    }
    
    func (s *regAllocState) close() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top