Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 348 for connectat (0.42 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantize_weight.cc

        // status.
        return true;
      }
    
      // Inserts ConvertOp which is used for converting float32 ConstantOp into
      // float16 quantization. If there is an existing ConvertOp connected to the
      // ConstantOp, the quantizable_op will be rewired to the existing ConvertOp.
      // This guarantees at most one ConvertOp is created for float32 to float16
      // conversion.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/RecoverFromBrokenResolutionIntegrationTest.groovy

            failure.assertHasDescription("Execution failed for task ':retrieve'.")
            failure.assertHasCause("Could not resolve all files for configuration ':compile'.")
            failure.assertThatCause(matchesRegexp(".*?Connect to 127.0.0.1:${port} (\\[.*\\])? failed: Connection refused.*"))
    
            when:
            server.resetExpectations()
            then:
            executer.withArgument("--offline")
            run 'retrieve'
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  3. pkg/kubelet/certificate/bootstrap/bootstrap.go

    	defer cancel()
    
    	var connected bool
    	wait.JitterUntil(func() {
    		if _, err := cli.Get().AbsPath("/healthz").Do(ctx).Raw(); err != nil {
    			klog.InfoS("Failed to connect to apiserver", "err", err)
    			return
    		}
    		cancel()
    		connected = true
    	}, 2*time.Second, 0.2, true, ctx.Done())
    
    	if !connected {
    		return errors.New("timed out waiting to connect to apiserver")
    	}
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 27 08:04:25 UTC 2022
    - 14.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbTransport.java

                        Hexdump.hexdump( log, sbuf, 4, n );
                    }
                }
            }
        }
        public void connect() throws SmbException {
            try {
                super.connect( RESPONSE_TIMEOUT );
            } catch( TransportException te ) {
                throw new SmbException( "Failed to connect: " + address, te );
            }
        }
        protected void doConnect() throws IOException {
            /*
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 31.2K bytes
    - Viewed (0)
  5. maven-core/src/main/resources/META-INF/maven/extension.xml

        <exportedArtifact>org.apache.maven.resolver:maven-resolver-util</exportedArtifact>
        <exportedArtifact>org.apache.maven.resolver:maven-resolver-connector-basic</exportedArtifact>
    
        <exportedArtifact>javax.inject:javax.inject</exportedArtifact>
        <exportedArtifact>javax.annotation:javax.annotation-api</exportedArtifact>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 08 10:37:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. src/main/java/jcifs/http/NtlmHttpURLConnection.java

            this.setInstanceFollowRedirects(this.connection.getInstanceFollowRedirects());
        }
    
    
        @Override
        public void connect () throws IOException {
            if ( this.connected )
                return;
            this.connection.connect();
            this.connected = true;
        }
    
    
        private void handshake () {
            if ( this.handshakeComplete )
                return;
            try {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 25.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/types.go

    type ProtocolType string
    
    // Valid types for ProtocolType for konnectivity server
    const (
    	// Use HTTPConnect to connect to konnectivity server
    	ProtocolHTTPConnect ProtocolType = "HTTPConnect"
    	// Use grpc to connect to konnectivity server
    	ProtocolGRPC ProtocolType = "GRPC"
    	// Connect directly (skip konnectivity server)
    	ProtocolDirect ProtocolType = "Direct"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 17:59:05 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/RangeSet.java

     * ignore empty ranges and coalesce connected ranges. For example:
     *
     * <pre>{@code
     * RangeSet<Integer> rangeSet = TreeRangeSet.create();
     * rangeSet.add(Range.closed(1, 10)); // {[1, 10]}
     * rangeSet.add(Range.closedOpen(11, 15)); // disconnected range; {[1, 10], [11, 15)}
     * rangeSet.add(Range.closedOpen(15, 20)); // connected range; {[1, 10], [11, 20)}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/testdata/input/ingress.log

    2020-06-29T23:37:27.336645Z	info	Channel Connectivity change to CONNECTING
    2020-06-29T23:37:27.336838Z	info	Subchannel picks a new address "istiod.istio-system.svc:15012" to connect
    2020-06-29T23:37:27.349559Z	info	Subchannel Connectivity change to READY
    2020-06-29T23:37:27.349600Z	info	pickfirstBalancer: HandleSubConnStateChange: 0xc00087d1e0, {READY <nil>}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 03 15:51:03 UTC 2020
    - 11K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/build_services.adoc

    ----
    include::{snippetsPath}/plugins/buildService/groovy/buildSrc/src/main/java/DownloadPlugin.java[]
    ----
    ====
    
    The plugin registers the service and receives a `Provider<WebService>` back.
    This provider can be connected to task properties to pass the service to the task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 18:03:10 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top