Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,342 for Handles (0.23 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/project/CrossProjectModelAccess.java

         */
        GradleInternal gradleInstanceForProject(ProjectInternal referrerProject, GradleInternal gradle);
    
        /**
         * Provides an implementation of a tracker that handles the usages of TaskDependency API in the context
         * of the current project. The tracker checks that the usages for possible violation of cross-project model access restriction.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 04:11:36 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  2. pkg/proxy/node.go

    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    	}
    }
    
    // OnNodeDelete is a handler for Node deletes.
    func (n *NodePodCIDRHandler) OnNodeDelete(node *v1.Node) {
    	n.logger.Error(nil, "Current Node is being deleted", "node", klog.KObj(node))
    }
    
    // OnNodeSynced is a handler for Node syncs.
    func (n *NodePodCIDRHandler) OnNodeSynced() {}
    
    // NodeEligibleHandler handles the life cycle of the Node's eligibility, as
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/DaemonJavaCompilerIntegrationTest.groovy

                        }
                    }
                }
            """
    
            expect:
            succeeds "compileJava"
        }
    
        def "handles -sourcepath being specified"() {
            goodCode()
            buildFile << """
                tasks.withType(JavaCompile) {
                    options.sourcepath = project.layout.files()
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/test/mock/caserver.go

    	}
    	cert := pem.EncodeToMemory(block)
    
    	return cert, nil
    }
    
    // Check handles health check requests.
    func (s *CAServer) Check(ctx context.Context, in *ghc.HealthCheckRequest) (*ghc.HealthCheckResponse, error) {
    	return &ghc.HealthCheckResponse{
    		Status: ghc.HealthCheckResponse_SERVING,
    	}, nil
    }
    
    // Watch handles health check streams.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. doc/next/6-stdlib/2-unique.md

    `Make[T]` function, which produces a reference to a canonical copy of
    the value in the form of a `Handle[T]`.
    Two `Handle[T]` are equal if and only if the values used to produce the
    handles are equal, allowing programs to deduplicate values and reduce
    their memory footprint.
    Comparing two `Handle[T]` values is efficient, reducing down to a simple
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 566 bytes
    - Viewed (0)
  6. releasenotes/notes/50132.yaml

        For this to work, it must be configured as a `ClusterIP` Service with
        redirection enabled. This is colloquially referred to as a "gateway
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 659 bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/webhook.go

    	}
    	return len(p), nil
    }
    
    // initSSecureWebhookServer handles initialization for the HTTPS webhook server.
    // If https address is off the injection handlers will be registered on the main http endpoint, with
    // TLS handled by a proxy/gateway in front of Istiod.
    func (s *Server) initSecureWebhookServer(args *PilotArgs) {
    	// create the https server for hosting the k8s injectionWebhook handlers.
    	if args.ServerOptions.HTTPSAddr == "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. mockwebserver/src/main/kotlin/mockwebserver3/StreamHandler.kt

     */
    package mockwebserver3
    
    import okhttp3.ExperimentalOkHttpApi
    
    /**
     * Handles a call's stream directly. Use this instead of [MockResponseBody] to begin sending
     * response data before all request data has been received.
     *
     * See [okhttp3.RequestBody.isDuplex].
     */
    @ExperimentalOkHttpApi
    interface StreamHandler {
      fun handle(stream: Stream)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 23 14:31:42 UTC 2024
    - 945 bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation_resourceclaim_test.go

    			ResourceHandles: func() []resource.ResourceHandle {
    				var handles []resource.ResourceHandle
    				for i := 0; i < resource.AllocationResultResourceHandlesMaxSize; i++ {
    					handle := resource.ResourceHandle{
    						DriverName: "valid",
    						Data:       strings.Repeat(" ", resource.ResourceHandleDataMaxSize),
    					}
    					handles = append(handles, handle)
    				}
    				return handles
    			}(),
    			Shareable: true,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  10. platforms/jvm/jvm-services/src/test/groovy/org/gradle/jvm/toolchain/internal/WindowsInstallationSupplierTest.groovy

        }
    
        def "handles absent adoptopenjdk keys"() {
            given:
            registry.getSubkeys(WindowsRegistry.Key.HKEY_LOCAL_MACHINE, _) >> { throw new MissingRegistryEntryException() }
            def supplier = createSupplier()
    
            when:
            def locations = supplier.get()
    
            then:
            locations.isEmpty()
        }
    
        def "gracefully handles unavailable native integration"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 22:14:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top