Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for incoming2 (0.3 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            def beforeResolveCalled = false
            def afterResolveCalled = false
    
            given:
            config.incoming.beforeResolve(beforeResolveAction)
            config.incoming.afterResolve(afterResolveAction)
            config.incoming.beforeResolve {
                beforeResolveCalled = true
            }
            config.incoming.afterResolve {
                afterResolveCalled = true
            }
            def copy = config.copy()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                }
            } else {
                for (EdgeState incoming : Lists.newArrayList(incomingEdges)) {
                    if (incoming.getDependencyState().getDependency().isEndorsingStrictVersions()) {
                        // pass my own component because we are already in the process of re-selecting it
                        incoming.getFrom().reselect();
                    }
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

                }
    
                def intermediateFiles = configurations.implementation.incoming.artifactView {
                    attributes.attribute(color, 'green')
                }.files
    
                dependencies {
                    transformed files(intermediateFiles)
                }
    
                def transformedFiles = configurations.transformed.incoming.artifactView {
                    attributes.attribute(color, 'red')
                }.files
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	return result, true
    }
    
    func (c *Cacher) processEvent(event *watchCacheEvent) {
    	if curLen := int64(len(c.incoming)); c.incomingHWM.Update(curLen) {
    		// Monitor if this gets backed up, and how much.
    		klog.V(1).Infof("cacher (%v): %v objects queued in incoming channel.", c.groupResource.String(), curLen)
    	}
    	c.incoming <- *event
    }
    
    func (c *Cacher) dispatchEvents() {
    	// Jitter to help level out any aggregate load.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      // other end of the incoming edges. Since we're proceding in a valid
      // topological order, all lookups of these tokens in
      // (*control_nodes)[incoming] should be valid. However, we might (in theory)
      // have pruned an operator above, so we only emit values that have been
      // populated.
      llvm::SmallVector<Value, 2> control_tokens;
      for (const int incoming : maybe_control_node->second.incoming) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // CEL expressions have access to the contents of the AdmissionRequest and Authorizer, organized into CEL variables:
      //
      // 'object' - The object from the incoming request. The value is null for DELETE requests.
      // 'oldObject' - The existing object. The value is null for CREATE requests.
      // 'request' - Attributes of the admission request(/pkg/apis/admission/types.go#AdmissionRequest).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// ref: https://github.com/google/cel-spec
    	// CEL expressions have access to the contents of the API request/response, organized into CEL variables as well as some other useful variables:
    	//
    	// - 'object' - The object from the incoming request. The value is null for DELETE requests.
    	// - 'oldObject' - The existing object. The value is null for CREATE requests.
    	// - 'request' - Attributes of the API request([ref](/pkg/apis/admission/types.go#AdmissionRequest)).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  8. src/net/http/request.go

    	// connect to, while the Request's Host field optionally
    	// specifies the Host header value to send in the HTTP
    	// request.
    	URL *url.URL
    
    	// The protocol version for incoming server requests.
    	//
    	// For client requests, these fields are ignored. The HTTP
    	// client code always uses either HTTP/1.1 or HTTP/2.
    	// See the docs on Transport for details.
    	Proto      string // "HTTP/1.0"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/debug.go

    // PopulateABIInRegArgOps examines the entry block of the function
    // and looks for incoming parameters that have missing or partial
    // OpArg{Int,Float}Reg values, inserting additional values in
    // cases where they are missing. Example:
    //
    //	func foo(s string, used int, notused int) int {
    //	  return len(s) + used
    //	}
    //
    // In the function above, the incoming parameter "used" is fully live,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  10. pkg/proxy/iptables/proxier.go

    		// created in the kernel.)
    		proxier.filterChains.Write(utiliptables.MakeChainLine(kubeletFirewallChain))
    		proxier.filterRules.Write(
    			"-A", string(kubeletFirewallChain),
    			"-m", "comment", "--comment", `"block incoming localnet connections"`,
    			"-d", "127.0.0.0/8",
    			"!", "-s", "127.0.0.0/8",
    			"-m", "conntrack",
    			"!", "--ctstate", "RELATED,ESTABLISHED,DNAT",
    			"-j", "DROP",
    		)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
Back to top