Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 503 for forcing (0.26 sec)

  1. src/net/conf.go

    			}
    			switch {
    			case confVal.netGo:
    				if netGoBuildTag {
    					println("go package net: built with netgo build tag; using Go's DNS resolver")
    				} else {
    					println("go package net: GODEBUG setting forcing use of Go's resolver")
    				}
    			case !cgoAvailable:
    				println("go package net: cgo resolver not supported; using Go's DNS resolver")
    			case confVal.netCgo || confVal.preferCgo:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  2. src/runtime/mranges.go

    // from, then returns the new range. subtract assumes that a and b
    // either don't overlap at all, only overlap on one side, or are equal.
    // If b is strictly contained in a, thus forcing a split, it will throw.
    func (a addrRange) subtract(b addrRange) addrRange {
    	if b.base.lessEqual(a.base) && a.limit.lessEqual(b.limit) {
    		return addrRange{}
    	} else if a.base.lessThan(b.base) && b.limit.lessThan(a.limit) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableMultiset.java

              element = entry.getElement();
              remaining = entry.getCount();
            }
            remaining--;
            /*
             * requireNonNull is safe because `remaining` starts at 0, forcing us to initialize
             * `element` above. After that, we never clear it.
             */
            return requireNonNull(element);
          }
        };
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go

    		//     further notifications.
    		graceful := func() bool {
    			c.stateMutex.Lock()
    			defer c.stateMutex.Unlock()
    			return c.state == cacheWatcherBookmarkReceived
    		}()
    		klog.V(1).Infof("Forcing %v watcher close due to unresponsiveness: %v. len(c.input) = %v, len(c.result) = %v, graceful = %v", c.groupResource.String(), c.identifier, len(c.input), len(c.result), graceful)
    		c.forget(graceful)
    	}
    
    	if timer == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 12:22:41 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/jvm/scala_plugin.adoc

    .Forcing all code to be compiled
    ====
    include::sample[dir="snippets/scala/force/kotlin",files="build.gradle.kts[tags=force-compilation]"]
    include::sample[dir="snippets/scala/force/groovy",files="build.gradle[tags=force-compilation]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 17K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

            then:
            output.contains """
    config
    +--- foo:bar:1.0
    |    \\--- foo:baz:2.0 FAILED
    \\--- foo:baz:1.0 -> 2.0 FAILED
    """
        }
    
        def "marks modules that can't be resolved after forcing a different version as 'FAILED'"() {
            given:
            mavenRepo.module("org", "libA", "1.0").dependsOn("org", "libB", "1.0").dependsOn("org", "libC", "1.0").publish()
            mavenRepo.module("org", "libB", "1.0").publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                        edge("org:foo:1.4.1", "org:foo:1.4.9")
                    }
                    edge("org:foo:1.3.0", "org:foo:1.4.9")
                }
            }
        }
    
        void "parent pom does not participate in forcing mechanism"() {
            mavenRepo.module("org", "foo", '1.3.0').publish()
            mavenRepo.module("org", "foo", '2.4.0').publish()
    
            def parent = mavenRepo.module("org", "someParent", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  8. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator.go

    type DesiredStateOfWorldPopulator interface {
    	Run(sourcesReady config.SourcesReady, stopCh <-chan struct{})
    
    	// ReprocessPod sets value for the specified pod in processedPods
    	// to false, forcing it to be reprocessed. This is required to enable
    	// remounting volumes on pod updates (volumes like Downward API volumes
    	// depend on this behavior to ensure volume content is updated).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

     *         <i>configStatement1</i>
     *         <i>configStatement2</i>
     *     }
     * }
     * </pre>
     *
     * Examples of advanced dependency declaration including:
     * <ul>
     * <li>Forcing certain dependency version in case of the conflict.</li>
     * <li>Excluding certain dependencies by name, group or both.
     *      More details about per-dependency exclusions can be found in
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  10. src/net/http/fs_test.go

    		ServeFile(w, r, "testdata/file")
    
    		// Because the testdata is so small, it would fit in
    		// both the h1 and h2 Server's write buffers. For h1,
    		// sendfile is used, though, forcing a header flush at
    		// the io.Copy. http2 doesn't do a header flush so
    		// buffers all 11 bytes and then adds its own
    		// Content-Length. To prevent the Server's
    		// Content-Length and test ServeFile only, flush here.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
Back to top