Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,622 for goes (0.05 sec)

  1. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

            given:
            createBuildScripts("""
                publications {
                    mavenCustom(MavenPublication) {
                        from components.java
                        // 'd' goes first because it only has a file difference
                        // 'a'-'c' have extension differences, and are sorted alphabetically
                        artifacts = ["b3.txt", "c4.txt", "a2.txt", "d1.jar"]
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/util/apiclient/wait.go

    	WaitForControlPlaneComponents(cfg *kubeadmapi.ClusterConfiguration) error
    	// WaitForAPI waits for the API Server's /healthz endpoint to become "ok"
    	// TODO: remove WaitForAPI once WaitForAllControlPlaneComponents goes GA:
    	// https://github.com/kubernetes/kubeadm/issues/2907
    	WaitForAPI() error
    	// WaitForPodsWithLabel waits for Pods in the kube-system namespace to become Ready
    	WaitForPodsWithLabel(kvLabel string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. pkg/volume/portworx/portworx_util.go

    	}
    
    	klog.Infof("Using portworx local service at: %v:%d as api endpoint",
    		volumeHost.GetHostName(), osgMgmtPort)
    	return volumeclient.VolumeDriver(util.portworxClient), nil
    }
    
    // lookupPXAPIPortFromService goes over all the ports in the given service and returns the target
    // port for osdMgmtDefaultPort
    func lookupPXAPIPortFromService(svc *v1.Service) int32 {
    	for _, p := range svc.Spec.Ports {
    		if p.Port == osdMgmtDefaultPort {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  4. src/cmd/cgo/internal/testcarchive/carchive_test.go

    	} else if GOOS == "darwin" && GOARCH == "amd64" {
    		t.Skipf("skipping on %s/%s: runtime does not permit SI_USER SIGSEGV", GOOS, GOARCH)
    	}
    	globalSkip(t)
    	checkSignalForwardingTest(t)
    	buildSignalForwardingTest(t)
    
    	// We want to send the process a signal and see if it dies.
    	// Normally the signal goes to the C thread, the Go signal
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 34.8K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprog/gc.go

    	increment := int64((myLimit / 10) * 1)
    	for i := increment; i < maxTarget; i += increment {
    		target <- i
    
    		// Check to make sure the memory limit is maintained.
    		// We're just sampling here so if it transiently goes over we might miss it.
    		// The internal accounting is inconsistent anyway, so going over by a few
    		// pages is certainly possible. Just make sure we're within some bound.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  6. docs/en/docs/deployment/https.md

        * So, the **certificate and encryption** handling is done **before HTTP**.
    * **TCP doesn't know about "domains"**. Only about IP addresses.
        * The information about the **specific domain** requested goes in the **HTTP data**.
    * The **HTTPS certificates** "certify" a **certain domain**, but the protocol and encryption happen at the TCP level, **before knowing** which domain is being dealt with.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 16:31:18 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. build-logic/packaging/src/main/kotlin/gradlebuild.distributions.gradle.kts

    val coreRuntimeClasspath by libraryResolver(listOf(coreRuntimeOnly))
    coreRuntimeClasspath.description = "Resolves to all Jars, including transitives, that make up the core of the distribution (needed to decide if a Jar goes into 'plugins' or not)"
    val agentsRuntimeClasspath by libraryResolver(listOf(agentsRuntimeOnly))
    agentsRuntimeClasspath.description = "Resolves to all Jars that need to be added as agents"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  8. src/cmd/trace/regions.go

    		if err != nil {
    			http.Error(w, fmt.Sprintf("failed to execute template: %v", err), http.StatusInternalServerError)
    			return
    		}
    	}
    }
    
    // regionFingerprint is a way to categorize regions that goes just one step beyond the region's Type
    // by including the top stack frame.
    type regionFingerprint struct {
    	Frame trace.StackFrame
    	Type  string
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

      GraphOptimizationPassOptions options;
      options.graph = &graph;
      options.device_set = device_set.get();
      options.session_options = &session_options;
    
      // Scope::ToGraph seems to drop assigned devices, probably because it goes
      // through a GraphDef.  So explicitly maintain the device assignment.
      std::unordered_map<string, string> assigned_device_names;
      for (Node* n : s.graph()->nodes()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/behind-a-proxy.md

    Probably in many cases the default will be that the proxy doesn't have a stripped path prefix.
    
    In a case like that (without a stripped path prefix), the proxy would listen on something like `https://myawesomeapp.com`, and then if the browser goes to `https://myawesomeapp.com/api/v1/app` and your server (e.g. Uvicorn) listens on `http://127.0.0.1:8000` the proxy (without a stripped path prefix) would access Uvicorn at the same path: `http://127.0.0.1:8000/api/v1/app`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 11.6K bytes
    - Viewed (0)
Back to top