Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 373 for closeFn (0.3 sec)

  1. manifests/addons/dashboards/lib/queries.libsonnet

                    rate(
                      istio_tcp_connections_opened_total{%(podLabels)s}
                    [$__rate_interval])
                  )
                |||
              ),
              self.query(
                'Closed ({{pod}})',
                |||
                  -sum by (pod) (
                    rate(
                      istio_tcp_connections_closed_total{%(podLabels)s}
                    [$__rate_interval])
                  )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/api/DaemonConnection.java

         * <ul>
         * <li>A {@link org.gradle.launcher.daemon.protocol.CloseInput} event received from the client.</li>
         * <li>When the client connection disconnects unexpectedly.</li>
         * <li>When the connection is closed using {@link #stop()}.</li>
         * </ul>
         *
         * Note: the end of input may be signalled from another thread before this method returns.
         *
         * @param handler the handler. Use null to remove the current handler.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/options.go

    	// a port number is automatically chosen.
    	HTTPAddr string
    
    	// The listening address for HTTPS (webhooks). If the port in the address is empty or "0" (as in "127.0.0.1:" or "[::1]:0")
    	// a port number is automatically chosen.
    	// If the address is empty, the secure port is disabled, and the
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/internal/trace/testdata/testprog/stress-start-stop.go

    		wg.Add(1)
    		go func() {
    			<-done
    			wg.Done()
    		}()
    
    		rp, wp, err := os.Pipe()
    		if err != nil {
    			log.Fatalf("failed to create pipe: %v", err)
    			return
    		}
    		defer func() {
    			rp.Close()
    			wp.Close()
    		}()
    		wg.Add(1)
    		go func() {
    			var tmp [1]byte
    			rp.Read(tmp[:])
    			<-done
    			wg.Done()
    		}()
    		time.Sleep(time.Millisecond)
    
    		go func() {
    			runtime.LockOSThread()
    			for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubtypingComponent.kt

         *  3. It is consistent with most of the behavior of the Kotlin compiler.
         */
        STRICT,
    
        /**
         * Error types are equal to and subtypes of all types.
         *
         * [LENIENT] should be chosen if type errors are expected and should be treated as type holes that can be satisfied by any other type.
         * However, caution should be applied when using [LENIENT], as the policy can swallow type errors which should have been dealt with
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/RuleTaskExecutionIntegrationTest.groovy

                    }
                }
            """
    
            then:
            createdTasksFor("t1") == [":t1"]
        }
    
        @UnsupportedWithConfigurationCache
        def "task container is self closed by task selection and can be later graph closed"() {
            when:
            buildFile << '''
                import org.gradle.model.internal.core.*
    
                model {
                    tasks {
                        create("t1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. cmd/peer-rest-client.go

    	conn := client.gridConn()
    	if conn == nil {
    		return false
    	}
    	return client.restClient.IsOnline() || conn.State() == grid.StateConnected
    }
    
    // Close - marks the client as closed.
    func (client *peerRESTClient) Close() error {
    	client.restClient.Close()
    	return nil
    }
    
    // GetLocks - fetch older locks for a remote node.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_test.go

    		if localFlakes == 2 && i == 0 {
    			c1.Close()
    			continue
    		}
    		for {
    			select {
    			case <-tooSlow.C:
    				t.Logf("localPipe: timeout waiting for %v", c1.LocalAddr())
    				c1.Close()
    				continue Dialing
    
    			case c2 := <-localListener.ch:
    				if c2.RemoteAddr().String() == c1.LocalAddr().String() {
    					t.Cleanup(func() { c1.Close() })
    					t.Cleanup(func() { c2.Close() })
    					return c1, c2
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. internal/ioutil/ioutil_test.go

    	if err != context.DeadlineExceeded {
    		t.Error("DeadlineWriter shouldn't be successful - should return context.DeadlineExceeded")
    	}
    	w.Close()
    	w = NewDeadlineWriter(&sleepWriter{timeout: 100 * time.Millisecond}, 600*time.Millisecond)
    	n, err := w.Write([]byte("abcd"))
    	w.Close()
    	if err != nil {
    		t.Errorf("DeadlineWriter should succeed but failed with %s", err)
    	}
    	if n != 4 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/subst.go

    	switch t := typ.(type) {
    	case nil:
    		// Call typOrNil if it's possible that typ is nil.
    		panic("nil typ")
    
    	case *Basic:
    		// nothing to do
    
    	case *Alias:
    		// This code follows the code for *Named types closely.
    		// TODO(gri) try to factor better
    		orig := t.Origin()
    		n := orig.TypeParams().Len()
    		if n == 0 {
    			return t // type is not parameterized
    		}
    
    		// TODO(gri) do we need this for Alias types?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top