Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 67 for infeasible (0.19 sec)

  1. pkg/scheduler/apis/config/types.go

    	componentbaseconfig.DebuggingConfiguration
    
    	// PercentageOfNodesToScore is the percentage of all nodes that once found feasible
    	// for running a pod, the scheduler stops its search for more feasible nodes in
    	// the cluster. This helps improve scheduler's performance. Scheduler always tries to find
    	// at least "minFeasibleNodesToFind" feasible nodes no matter what the value of this flag is.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. pkg/kube/krt/recomputetrigger.go

    // Typically, all state is registered and fetched through krt.Fetch. Through this mechanism, any changes are automatically
    // propagated through the system to dependencies.
    // In some cases, it may not be feasible to get all state into krt; hopefully, this is a temporary state.
    // RecomputeTrigger works around this by allowing an explicit call to recompute a collection; the caller must be sure to call Trigger()
    // any time the state changes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 07 05:51:56 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/generated.proto

      //    the specified VolumeAttributesClass not existing.
      //  - InProgress
      //    InProgress indicates that the volume is being modified.
      //  - Infeasible
      //   Infeasible indicates that the request has been rejected as invalid by the CSI driver. To
      // 	  resolve the error, a valid VolumeAttributesClass needs to be specified.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_ambiguous_arg.txt

    go get m/p  # @latest
    go list -m all
    stdout '^m/p v0.3.0 '
    ! stdout '^m '
    
    cp go.mod.orig go.mod
    
    go get m/p@v0.1.0
    go list -m all
    stdout '^m/p v0.1.0 '
    ! stdout '^m '
    
    # When feasible, the argument 'm/p' in 'go get m/p' refers to *package* m/p,
    # which is in module m.
    #
    # (It only refers to *module* m/p if there is no such package at the
    # requested version.)
    
    go get m/p@v0.2.0
    go list -m all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. src/syscall/mksyscall_windows.go

    		cmdEnv = append(os.Environ(), "GO111MODULE=on")
    
    		// Force -mod=readonly instead of the default -mod=vendor.
    		//
    		// mkwinsyscall is not itself vendored into the standard library, and it is
    		// not feasible to do so at the moment: std-vendored libraries are included
    		// in the "std" meta-pattern (because in general they *are* linked into
    		// users binaries separately from the original import paths), and we can't
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/nowb.go

    			// (the outermost stack element) was found, by a static
    			// reachability analysis over the fully lowered optimized code,
    			// to call a function (fn) that involves a write barrier.
    			//
    			// Even if the call path is infeasable,
    			// you will need to reorganize the code to avoid it.
    			base.ErrorfAt(fn.WBPos, 0, "write barrier prohibited by caller; %v%s", fn.Nname, err.String())
    			continue
    		}
    
    		// Enqueue fn's calls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 17:29:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. docs/distributed/CONFIG.md

    `minio server http://host{1...4}/disk{1...4}` this requirement added an additional burden to have sequential hostnames for us to make sure that we can provide horizontal distribution, however we have come across situations where sometimes this is not feasible and there are no easier alternatives without modifying /etc/hosts on the host system as root user.  Many times in airgapped deployments this is not allowed or requires audits and approvals.
    
    MinIO server configuration file allows users to provide...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 03 15:54:03 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinModificationTopics.kt

     * does not imply the corresponding module-level event. Similarly, publishing a module state modification event does not imply out-of-block
     * modification.
     *
     * Global modification events are published when it's not feasible or desired to publish events for a single module, or a limited set of
     * modules. For example, a change in the environment such as removing an SDK might affect all modules, so a global event is more
     * appropriate.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ArrayListMultimap.java

       */
      @Override
      List<V> createCollection() {
        return new ArrayList<>(expectedValuesPerKey);
      }
    
      /**
       * Reduces the memory used by this {@code ArrayListMultimap}, if feasible.
       *
       * @deprecated For a {@link ListMultimap} that automatically trims to size, use {@link
       *     ImmutableListMultimap}. If you need a mutable collection, remove the {@code trimToSize}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. pkg/scheduler/extender_test.go

    			expectedResult: ScheduleResult{
    				SuggestedHost:  "node1",
    				EvaluatedNodes: 2,
    				FeasibleNodes:  1,
    			},
    			name: "test 10 - no scoring, extender filters configured, multiple feasible nodes are evaluated",
    		},
    		{
    			registerPlugins: []tf.RegisterPluginFunc{
    				tf.RegisterQueueSortPlugin(queuesort.Name, queuesort.New),
    				tf.RegisterBindPlugin(defaultbinder.Name, defaultbinder.New),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top