Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 132 for Handles (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    func markAsDeleting(obj runtime.Object, now time.Time) (err error) {
    	objectMeta, kerr := meta.Accessor(obj)
    	if kerr != nil {
    		return kerr
    	}
    	// This handles Generation bump for resources that don't support graceful
    	// deletion. For resources that support graceful deletion is handle in
    	// pkg/api/rest/delete.go
    	if objectMeta.GetDeletionTimestamp() == nil && objectMeta.GetGeneration() > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    func (c *typeConv) badStructPointerTypedef(name string, dt *dwarf.StructType) bool {
    	// Windows handle types can all potentially contain non-pointers.
    	// badVoidPointerTypedef handles the "void *" HANDLE type, but other
    	// handles are defined as
    	//
    	// struct <name>__{int unused;}; typedef struct <name>__ *name;
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    			}
    			return madmin.AccountDisabled
    		}(),
    		MemberOf:  cache.iamUserGroupMemberships[name].ToSlice(),
    		UpdatedAt: pl.UpdatedAt,
    	}, nil
    }
    
    // PolicyMappingNotificationHandler - handles updating a policy mapping from storage.
    func (store *IAMStoreSys) PolicyMappingNotificationHandler(ctx context.Context, userOrGroup string, isGroup bool, userType IAMUserType) error {
    	if userOrGroup == "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  4. plugin/pkg/admission/resourcequota/admission_test.go

    	handler, err := resourcequota.NewResourceQuota(config, 5)
    	if err != nil {
    		return nil, err
    	}
    
    	initializers := admission.PluginInitializers{
    		genericadmissioninitializer.New(kubeClient, nil, informerFactory, nil, nil, stopCh, nil),
    		controlplaneadmission.NewPluginInitializer(quotaConfiguration, nil),
    	}
    	initializers.Initialize(handler)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. src/regexp/syntax/parse.go

    				return true
    			}
    		}
    		return false
    	case OpAnyCharNotNL:
    		return r != '\n'
    	case OpAnyChar:
    		return true
    	}
    	return false
    }
    
    // parseVerticalBar handles a | in the input.
    func (p *parser) parseVerticalBar() {
    	p.concat()
    
    	// The concatenation we just parsed is on top of the stack.
    	// If it sits above an opVerticalBar, swap it below
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  6. src/runtime/mgc.go

    	startTime := nanotime()
    
    	mp := acquirem()
    	mp.preemptoff = "gcing"
    	mp.traceback = 2
    	curgp := mp.curg
    	// N.B. The execution tracer is not aware of this status
    	// transition and handles it specially based on the
    	// wait reason.
    	casGToWaitingForGC(curgp, _Grunning, waitReasonGarbageCollection)
    
    	// Run gc on the g0 stack. We do this so that the g stack
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            assertTaskReady(finalizer)
            assertTaskReadyAndNoMoreToStart(a)
            assertAllWorkComplete()
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21975")
        def "handles task failure when a finalizer is a dependency of and finalized by another node"() {
            Task finalizer1 = createTask("finalizer1")
            Task finalizer2 = task("finalizer2", finalizedBy: [finalizer1])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            then:
            ids.size() == 1
            ids.first() == null
            buildOperationRunner.log.all(ExecuteDomainObjectCollectionCallbackBuildOperationType).empty
        }
    
        def "handles nested listener registration"() {
            given:
            containerSupportsBuildOperations()
    
            when:
            UserCodeApplicationId id1 = null
            UserCodeApplicationId id2 = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapter.java

     * Converts progress events sent from the tooling provider to the tooling client to the corresponding event types available on the public Tooling API, and broadcasts the converted events to the
     * matching progress listeners. This adapter handles all the different incoming progress event types (except the original logging-derived progress listener).
     */
    public class BuildProgressListenerAdapter implements InternalBuildProgressListener {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:disable-state-tracking]]
    === Disabling up-to-date checks
    
    Gradle automatically handles up-to-date checks for output files and directories, but what if the task output is something else entirely?
    Perhaps it’s an update to a web service or a database table.
    Or sometimes you have a task which should always run.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
Back to top