Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 63 for infeasible (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/kube/controllers/queue.go

    type ReconcilerFn func(key types.NamespacedName) error
    
    // Queue defines an abstraction around Kubernetes' workqueue.
    // Items enqueued are deduplicated; this generally means relying on ordering of events in the queue is not feasible.
    type Queue struct {
    	queue       workqueue.RateLimitingInterface
    	initialSync *atomic.Bool
    	name        string
    	maxAttempts int
    	workFn      func(key any) error
    	closed      chan struct{}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-groovy/src/main/java/org/gradle/api/tasks/GroovyRuntime.java

                }
    
                private void addDependencyTo(List<Dependency> dependencies, String notation) {
                    // project.getDependencies().create(String) seems to be the only feasible way to create a Dependency with a classifier
                    dependencies.add(project.getDependencies().create(notation));
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top