Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 175 for Established (0.36 sec)

  1. internal/grid/debug.go

    		}
    		for _, server := range t.Servers {
    			server.Close()
    		}
    		for _, listener := range t.Listeners {
    			listener.Close()
    		}
    	})
    }
    
    // WaitAllConnect will wait for all connections to be established.
    func (t *TestGrid) WaitAllConnect(ctx context.Context) {
    	for _, manager := range t.Managers {
    		for _, remote := range manager.Targets() {
    			if manager.HostName() == remote {
    				continue
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientConfigurer.java

            if (authentications.size() > 0) {
                useCredentials(credentialsProvider, authentications);
    
                // Use preemptive authorisation if no other authorisation has been established
                builder.addInterceptorFirst(new PreemptiveAuth(getAuthScheme(authentications), isPreemptiveEnabled(authentications)));
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller_test.go

    var installingCondition = apiextensionsv1.CustomResourceDefinitionCondition{
    	Type:    apiextensionsv1.Established,
    	Status:  apiextensionsv1.ConditionFalse,
    	Reason:  "Installing",
    	Message: "the initial names have been accepted",
    }
    
    var notEstablishedCondition = apiextensionsv1.CustomResourceDefinitionCondition{
    	Type:    apiextensionsv1.Established,
    	Status:  apiextensionsv1.ConditionFalse,
    	Reason:  "NotAccepted",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 15.7K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/policy_options.go

    	//
    	// looking at https://kubernetes.io/docs/concepts/configuration/manage-resources-containers/,
    	// any possible naming scheme will lead to ambiguity to some extent.
    	// We picked "pcpu" because it the established docs hints at vCPU already.
    	FullPhysicalCPUsOnly bool
    	// Flag to evenly distribute CPUs across NUMA nodes in cases where more
    	// than one NUMA node is required to satisfy the allocation.
    	DistributeCPUsAcrossNUMA bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  5. cni/pkg/iptables/iptables.go

    	)
    
    	// CLI: -A ISTIO_PRERT -p tcp -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
    	//
    	// DESC: Anything that's already in conntrack as an established connection, accept
    	iptablesBuilder.AppendRule(
    		iptableslog.UndefinedCommand, ChainInpodPrerouting, iptablesconstants.MANGLE,
    		"-p", "tcp",
    		"-m", "conntrack",
    		"--ctstate", "RELATED,ESTABLISHED",
    		"-j", "ACCEPT",
    	)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. operator/pkg/helmreconciler/wait.go

    			if errGet != nil {
    				return false, errGet
    			}
    			for _, cond := range crd.Status.Conditions {
    				switch cond.Type {
    				case apiextensions.Established:
    					if cond.Status == apiextensions.ConditionTrue {
    						scope.Infof("established CRD %s", crdName)
    						continue descriptor
    					}
    				case apiextensions.NamesAccepted:
    					if cond.Status == apiextensions.ConditionFalse {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceErrorHandlingIntegrationTest.groovy

                    true
                }
            }
            settingsFile << withHttpBuildCacheServer()
            String errorPattern = /(Broken pipe|Connection reset|Software caused connection abort: socket write error|An established connection was aborted by the software in your host machine|127.0.0.1:.+ failed to respond)/
    
            when:
            executer.withStackTraceChecksDisabled()
            withBuildCache().run "customTask"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  8. pkg/hbone/dialer.go

    			remoteID = ids[0]
    		}
    	}
    	if resp.StatusCode != http.StatusOK {
    		return fmt.Errorf("round trip failed: %v", resp.Status)
    	}
    	log.WithLabels("host", r.Host, "remote", remoteID).Info("CONNECT established")
    	go func() {
    		defer conn.Close()
    		defer resp.Body.Close()
    
    		wg := sync.WaitGroup{}
    		wg.Add(1)
    		go func() {
    			// handle upstream (hbone server) --> downstream (app)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:41 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbTree.java

            }
            connectionState = 1; // trying ...
    
            try {
                /* The hostname to use in the path is only known for
                 * sure if the NetBIOS session has been successfully
                 * established.
                 */
        
                session.transport.connect();
    
                unc = "\\\\" + session.transport.tconHostName + '\\' + share;
        
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8K bytes
    - Viewed (0)
  10. pkg/kube/portforwarder.go

    		}
    		if len(p) == 0 {
    			return fmt.Errorf("got no ports")
    		}
    		// Set local port now, as it may have been 0 as input
    		f.localPort = int(p[0].Local)
    		log.Debugf("Port forward established %v -> %v.%v:%v", f.Address(), f.podName, f.podName, f.podPort)
    		// The forwarder is now ready.
    		return nil
    	}
    }
    
    func (f *forwarder) Address() string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 02:12:37 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top