Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 1,596 for forced (0.37 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

                    }
                }
            """
    
            when:
            run "resolutionResult"
    
            then:
            output.contains """
    cool-project:5.0 root
    foo:1.0 between versions 1.0 and 0.5
    leaf:2.0 forced
    bar:1.0 requested
    baz:1.0 requested
    """
        }
    
        @ToBeFixedForConfigurationCache(because = "task exercises the resolution result API")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  2. src/mdo/model.vm

         *
         * @param from the {@code ${class.name}} instance to use as a basis
         * @param forceCopy the boolean indicating if a copy should be forced
         * @return a new {@code Builder}
         */
        @Nonnull
        public static Builder newBuilder(${class.name} from, boolean forceCopy) {
            return new Builder(from, forceCopy);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/devicemanager/topology_hints_test.go

    					},
    					{
    						NUMANodeAffinity: makeSocketMask(0, 1),
    						Preferred:        false,
    					},
    				},
    			},
    		},
    		{
    			description: "Request for 2, optimal on 1 NUMA node, forced cross-NUMA",
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					UID: "fakePod",
    				},
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{
    							Name: "fakeContainer",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  4. src/net/conf.go

    		if !hasDNSSource {
    			dnsSource = true
    			if first == "" {
    				first = "dns"
    			}
    		}
    	}
    
    	// Cases where Go can handle it without cgo and C thread overhead,
    	// or where the Go resolver has been forced.
    	switch {
    	case filesSource && dnsSource:
    		if first == "files" {
    			return hostLookupFilesDNS, dnsConf
    		} else {
    			return hostLookupDNSFiles, dnsConf
    		}
    	case filesSource:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. guava-gwt/pom.xml

              <show>package</show>
            </configuration>
          </plugin>
          <!-- Disable "normal" testing, which doesn't work for GWT tests. -->
          <plugin>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/layout_optimization.cc

                                                &devices)))
        return signalPassFailure();
    
      // If there is no runtime device information and data format is not explicitly
      // forced, there is nothing to do.
      if (devices.NumDevices() == 0 && force_data_format_.empty()) return;
    
      func.walk([&](LayoutSensitiveInterface layout_sensitive_interface) {
        // Get desired op data format.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                        forced()
                    }
                    edge("org.gradle.test:lib2:3.0.6", "org.gradle.test:lib2:3.0.5") {
                        forced()
                    }
                }
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/17874")
        def "doesn't support rich versions from version catalogs in force method of resolutionStrategy"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  8. pilot/pkg/model/endpointshards.go

    	// This is updated on push, based on shards. If the previous list is different than
    	// current list, a full push will be forced, to trigger a secure naming update.
    	// Due to the larger time, it is still possible that connection errors will occur while
    	// CDS is updated.
    	ServiceAccounts sets.String
    }
    
    // Keys gives a sorted list of keys for EndpointShards.Shards.
    // Calls to Keys should be guarded with a lock on the EndpointShards.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/policy/v1beta1/generated.proto

      // readOnlyRootFilesystem when set to true will force containers to run with a read only root file
      // system.  If the container specifically requests to run with a non-read only root file system
      // the PSP should deny the pod.
      // If set to false the container may run with a read only root file system if it wishes but it
      // will not be forced to.
      // +optional
      optional bool readOnlyRootFilesystem = 14;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

                    request.getRemoteRepositories());
    
            if (cached != null
                    // if the POM has no file, we cached a missing artifact, only return the cached data if no update forced
                    && (!request.isForceUpdate() || hasFile(cached.getPomArtifact()))) {
                return cached;
            }
    
            List<Dependency> dependencies;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 09:07:17 UTC 2023
    - 30.3K bytes
    - Viewed (0)
Back to top