Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 625 for forced (0.39 sec)

  1. src/runtime/malloc_test.go

    	. "runtime"
    	"strings"
    	"sync/atomic"
    	"testing"
    	"time"
    	"unsafe"
    )
    
    var testMemStatsCount int
    
    func TestMemStats(t *testing.T) {
    	testMemStatsCount++
    
    	// Make sure there's at least one forced GC.
    	GC()
    
    	// Test that MemStats has sane values.
    	st := new(MemStats)
    	ReadMemStats(st)
    
    	nz := func(x any) error {
    		if x != reflect.Zero(reflect.TypeOf(x)).Interface() {
    			return nil
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_factory.go

    // invoke CodecForVersions. Callers that need only to read data should use UniversalDecoder().
    //
    // TODO: make this call exist only in pkg/api, and initialize it with the set of default versions.
    // All other callers will be forced to request a Codec directly.
    func (f CodecFactory) LegacyCodec(version ...schema.GroupVersion) runtime.Codec {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	}
    	if getCalls != 1 {
    		t.Errorf("Expected a live lookup of the namespace at t=0, got %d", getCalls)
    	}
    	getCalls = 0
    
    	// Ensure the live lookup is still forced up to forceLiveLookupTTL
    	fakeClock.Step(forceLiveLookupTTL)
    
    	// verify create operations in the namespace cause an error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                            'org.gradle.category': 'enforced-platform',
                            'org.gradle.status': 'release',
                        ])
                        module("org:foo:1.0")
                        noArtifacts()
                    }
                    edge('org:foo:1.1', 'org:foo:1.0') {
                        forced()
                        configuration = 'api'
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top