Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 141 for circuit (0.38 sec)

  1. src/cmd/compile/internal/types2/context.go

    // that may be supplied by users during instantiation.
    //
    // Contexts serve two purposes:
    //  - reduce the duplication of identical instances
    //  - short-circuit instantiation cycles
    //
    // For the latter purpose, we must always have a context during instantiation,
    // whether or not it is supplied by the user. For both purposes, it must be the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:29:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptHandler.java

            configureClosure.execute(getConfigurations());
        }
    
        @SuppressWarnings("deprecation")
        private void defineConfiguration() {
            // Defer creation and resolution of configuration until required. Short-circuit when script does not require classpath
            if (configContainer == null) {
                configContainer = (RoleBasedConfigurationContainerInternal) dependencyResolutionServices.getConfigurationContainer();
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 17:56:17 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/go/types/context.go

    // that may be supplied by users during instantiation.
    //
    // Contexts serve two purposes:
    //  - reduce the duplication of identical instances
    //  - short-circuit instantiation cycles
    //
    // For the latter purpose, we must always have a context during instantiation,
    // whether or not it is supplied by the user. For both purposes, it must be the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. hack/lib/protoc.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    # Short-circuit if protoc.sh has already been sourced
    [[ $(type -t kube::protoc::loaded) == function ]] && return 0
    
    # The root of the build/dist directory
    KUBE_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd -P)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 20:53:13 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. pkg/kube/krt/filter.go

    	// Check each of our defined filters to see if the object matches
    	// This function is called very often and is important to keep fast
    	// Cheaper checks should come earlier to avoid additional work and short circuit early
    
    	// If we are listing, we already did this. Do not redundantly check.
    	if !forList {
    		// First, lookup directly by key. This is cheap
    		// an empty set will match none
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/third_party/forked/golang/reflect/deep_equal.go

    		addr1 := v1.UnsafeAddr()
    		addr2 := v2.UnsafeAddr()
    		if addr1 > addr2 {
    			// Canonicalize order to reduce number of entries in visited.
    			addr1, addr2 = addr2, addr1
    		}
    
    		// Short circuit if references are identical ...
    		if addr1 == addr2 {
    			return true
    		}
    
    		// ... or already seen
    		typ := v1.Type()
    		v := visit{addr1, addr2, typ}
    		if visited[v] {
    			return true
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 20 17:18:42 UTC 2022
    - 10.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/inline/interleaved/interleaved.go

    				done = false
    			}
    		}
    
    		if done {
    			break
    		}
    	}
    
    	// Finally, remove any parens we inserted.
    	if len(parens) == 0 {
    		return // short circuit
    	}
    	var unparen func(ir.Node) ir.Node
    	unparen = func(n ir.Node) ir.Node {
    		if paren, ok := n.(*ir.ParenExpr); ok {
    			n = paren.X
    		}
    		ir.EditChildren(n, unparen)
    		return n
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/autoserviceexportcontroller.go

    )
    
    type autoServiceExportController struct {
    	autoServiceExportOptions
    
    	client   kube.Client
    	queue    controllers.Queue
    	services kclient.Client[*v1.Service]
    
    	// We use this flag to short-circuit the logic and stop the controller
    	// if the CRD does not exist (or is deleted)
    	mcsSupported bool
    }
    
    // autoServiceExportOptions provide options for creating a autoServiceExportController.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/equality.go

    			break
    		}
    	}
    
    	if allTimesUnchanged {
    		return newObj, nil
    	}
    
    	// This condition ensures the managed fields are always compared first. If
    	//	this check fails, the if statement will short circuit. If the check
    	// 	succeeds the slow path is taken which compares entire objects.
    	if !equalities.DeepEqualWithNilDifferentFromEmpty(oldManagedFields, newManagedFields) {
    		return newObj, nil
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 28 14:56:34 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/WebSocket.kt

     *    from the peer.
     *
     * Web sockets may fail due to HTTP upgrade problems, connectivity problems, or if either peer
     * chooses to short-circuit the graceful shutdown process:
     *
     *  * **Canceled:** the web socket connection failed. Messages that were successfully enqueued by
     *    either peer may not have been transmitted to the other.
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top