Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 133 for Handles (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                    expectResolve()
                }
            }
    
            then:
            executer.withArgument("-Pstatus=integration")
            succeeds 'checkDeps'
        }
    
        def "handles and recovers from errors in a custom metadata provider"() {
            given:
            buildFile << """
              class MP implements ComponentMetadataSupplier {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	GetCommTimeouts(handle Handle, timeouts *CommTimeouts) (err error)
    //sys	PurgeComm(handle Handle, dwFlags uint32) (err error)
    //sys	SetCommBreak(handle Handle) (err error)
    //sys	SetCommMask(handle Handle, dwEvtMask uint32) (err error)
    //sys	SetCommState(handle Handle, lpDCB *DCB) (err error)
    //sys	SetCommTimeouts(handle Handle, timeouts *CommTimeouts) (err error)
    //sys	SetupComm(handle Handle, dwInQueue uint32, dwOutQueue uint32) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. pkg/controller/daemon/daemon_controller.go

    	// The controller handles this via the hash.
    	generation, err := util.GetTemplateGeneration(ds)
    	if err != nil {
    		generation = nil
    	}
    	template := util.CreatePodTemplate(ds.Spec.Template, generation, hash)
    	// Batch the pod creates. Batch sizes start at SlowStartInitialBatchSize
    	// and double with each successful iteration in a kind of "slow start".
    	// This handles attempts to start large numbers of pods that would
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// First try to retrieve without allocating.
    	if handle := getWeakHandle(p); handle != nil {
    		return handle
    	}
    
    	lock(&mheap_.speciallock)
    	s := (*specialWeakHandle)(mheap_.specialWeakHandleAlloc.alloc())
    	unlock(&mheap_.speciallock)
    
    	handle := new(atomic.Uintptr)
    	s.special.kind = _KindSpecialWeakHandle
    	s.handle = handle
    	handle.Store(uintptr(p))
    	if addspecial(p, &s.special) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        /**
         * This is an implementation of the {@link groovy.lang.GroovyObject}'s corresponding method.
         * The interface itself is mixed-in at runtime, but we want to keep this implementation as it
         * properly handles the dynamicLookupRoutine.
         *
         * @see AsmBackedClassGenerator.ClassBuilderImpl#addDynamicMethods
         */
        @SuppressWarnings("JavadocReference")
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. src/net/http/request.go

    	// needed.
    	// To prevent DNS rebinding attacks, server Handlers should
    	// validate that the Host header has a value for which the
    	// Handler considers itself authoritative. The included
    	// ServeMux supports patterns registered to particular host
    	// names and thus protects its registered Handlers.
    	//
    	// For client requests, Host optionally overrides the Host
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. cmd/bucket-handlers.go

    		ReqParams:    extractReqParams(r),
    		RespElements: extractRespElements(w),
    		UserAgent:    r.UserAgent(),
    		Host:         handlers.GetSourceIP(r),
    	})
    }
    
    // PostPolicyBucketHandler - POST policy
    // ----------
    // This implementation of the POST operation handles object creation with a specified
    // signature policy in multipart/form-data
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

    // Lifts reads/writes of resource arguments from func_op and changes its
    // signature. resource_data_types is the (index, data type) pair for each
    // resource argument. handle_updated_arg_value is a caller-provided function
    // that handles the updated value for an resource argument.
    LogicalResult LiftArgRetResourcesForFunction(
        func::FuncOp func_op,
        const llvm::SmallDenseMap<int64_t, Type>& resource_data_types,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. cmd/kubelet/app/server.go

    		tlsOptions.Config.ClientAuth = tls.RequestClientCert
    	}
    
    	return tlsOptions, nil
    }
    
    // setContentTypeForClient sets the appropriate content type into the rest config
    // and handles defaulting AcceptContentTypes based on that input.
    func setContentTypeForClient(cfg *restclient.Config, contentType string) {
    	if len(contentType) == 0 {
    		return
    	}
    	cfg.ContentType = contentType
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/manager_test.go

    	m, _, p, _ := setupInProbeMode(t, []*pluginapi.Device{}, func(n string, d []pluginapi.Device) {}, socketName, pluginSocketName)
    	cleanup(t, m, p)
    }
    
    // Tests that the device plugin manager correctly handles registration and re-registration by
    // making sure that after registration, devices are correctly updated and if a re-registration
    // happens, we will NOT delete devices; and no orphaned devices left.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top