Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 108 for ulong (0.05 sec)

  1. pkg/controller/daemon/daemon_controller_test.go

    		t.Fatalf("error creating DaemonSets controller: %v", err)
    	}
    	manager.dsStore.Add(ds)
    	addNodes(manager.nodeStore, 0, 5, nil)
    
    	// the clock will be set 10s after the newest pod on node-1 went ready, which is not long enough to be available
    	manager.DaemonSetsController.failedPodsBackoff.Clock = testingclock.NewFakeClock(time.Unix(50+10, 0))
    
    	// will be preserved because it has the newest hash
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    			panic(fmt.Sprintf("unable to install container %s: %v", group.GroupVersion, err))
    		}
    	}
    	longRunningCheck := func(r *http.Request, requestInfo *request.RequestInfo) bool {
    		// simplified long-running check
    		return requestInfo.Verb == "watch" || requestInfo.Verb == "proxy"
    	}
    	fakeRuleEvaluator := auditpolicy.NewFakePolicyRuleEvaluator(auditinternal.LevelRequestResponse, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		return err
    	}
    
    	kubeDeps.useLegacyCadvisorStats = cadvisor.UsingLegacyCadvisorStats(kubeCfg.ContainerRuntimeEndpoint)
    
    	return nil
    }
    
    // NewMainKubelet instantiates a new Kubelet object along with all the required internal modules.
    // No initialization of Kubelet and its modules should happen here.
    func NewMainKubelet(kubeCfg *kubeletconfiginternal.KubeletConfiguration,
    	kubeDeps *Dependencies,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/apache/maven/artifact/maven-artifact/3.0-SNAPSHOT/maven-artifact-3.0-SNAPSHOT.jar

    n); static void <clinit>(); } org/apache/maven/artifact/manager/WagonConfigurationEx.class package org.apache.maven.artifact.manager; public synchronized class WagonConfigurationEx extends org.apache.maven.wagon.TransferFailedExcept { static final long serialVersionUID = 1; private final String originalMessage; private final String repositoryId; public void WagonConfigurationEx(String, String, Throwable); public void WagonConfigurationEx(String, String); public final String getRepositoryId(); public...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 160.1K bytes
    - Viewed (0)
  5. src/crypto/x509/verify_test.go

    	if err != nil {
    		return nil, nil, err
    	}
    
    	return cert, priv, nil
    }
    
    func TestPathologicalChain(t *testing.T) {
    	if testing.Short() {
    		t.Skip("skipping generation of a long chain of certificates in short mode")
    	}
    
    	// Build a chain where all intermediates share the same subject, to hit the
    	// path building worst behavior.
    	roots, intermediates := NewCertPool(), NewCertPool()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  6. src/net/http/server.go

    		// did that because that's how CloseNotify accidentally behaved
    		// in very early Go releases prior to context support. Once we
    		// added context support, people used a Handler's
    		// Request.Context() and passed it along. Having that context
    		// cancel on pipelined HTTP requests caused problems.
    		// Fortunately, almost nothing uses HTTP/1.x pipelining.
    		// Unfortunately, apt-get does, or sometimes does.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

    resultsFile:
     - results.bin \\(RegularFile, [0-9a-f]+\\)""")
            run "util:resolve"
    
            then:
            output.count("Transformed") == 1
        }
    
        def "long transformation chain works"() {
            given:
            buildFile << declareAttributes() << withJarTasks() << withFileLibDependency("lib3.jar") << withExternalLibDependency("lib4") << duplicatorTransform() << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    		if r.URL.Path == "/long" {
    			w.Header().Set("Long", strings.Repeat("a", 1<<20))
    		}
    	})).ts
    	c := ts.Client()
    	c.Transport.(*Transport).MaxResponseHeaderBytes = 512 << 10
    
    	if res, err := c.Get(ts.URL); err != nil {
    		t.Fatal(err)
    	} else {
    		res.Body.Close()
    	}
    
    	res, err := c.Get(ts.URL + "/long")
    	if err == nil {
    		defer res.Body.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/optimize.cc

        if (fc_op.getFusedActivationFunction() != "NONE") return failure();
    
        // Broadcast the constant operand of Mul if it isn't compatible to the
        // filter input. We only support broadcasting the operand along the depth
        // dimension, when the operand's depth is 1.
        rewriter.setInsertionPoint(q_op);
        Location loc = fc_op.getLoc();
        Value broadcasted_gamma;
        if (isa<TFL::Conv2DOp>(mul_op_lhs)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/memorymanager/policy_static_test.go

    			),
    			expected: map[v1.ResourceName]uint64{
    				v1.ResourceMemory: 5 * gb,
    				hugepages1Gi:      4 * gb,
    			},
    		},
    		{
    			description: "maximum resources of init containers > total resources of long running containers, including restartable init containers",
    			pod: getPodWithInitContainers(
    				"",
    				[]v1.Container{
    					{
    						Name: "container1",
    						Resources: v1.ResourceRequirements{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 05:49:15 UTC 2023
    - 100.4K bytes
    - Viewed (0)
Back to top