Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 202 for gStates (0.13 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

                        }
                    }
    
                    // If we have a result at this depth, don't bother building the next depth's states.
                    if (!results.isEmpty()) {
                        continue;
                    }
    
                    // Construct new states for processing at the next depth in case we can't find any solutions at this depth.
                    for (int i = 0; i < candidates.size(); i++) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  2. pkg/features/kube_features.go

    	// owner: @mikedanese
    	// alpha: v1.7
    	// beta: v1.12
    	//
    	// Gets a server certificate for the kubelet from the Certificate Signing
    	// Request API instead of generating one self signed and auto rotates the
    	// certificate as expiration approaches.
    	RotateKubeletServerCertificate featuregate.Feature = "RotateKubeletServerCertificate"
    
    	// owner: @kiashok
    	// kep: https://kep.k8s.io/4216
    	// alpha: v1.29
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/process/internal/DefaultExecHandle.java

                this.stateChanged.signalAll();
            } finally {
                lock.unlock();
            }
        }
    
        private boolean stateIn(ExecHandleState... states) {
            lock.lock();
            try {
                return Arrays.asList(states).contains(this.state);
            } finally {
                lock.unlock();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  4. src/internal/zstd/fse.go

    	base     uint16 // add the bits to this base to get the next state
    }
    
    // Given a literal length code, we need to read a number of bits and
    // add that to a baseline. For states 0 to 15 the baseline is the
    // state and the number of bits is zero. RFC 3.1.1.3.2.1.1.
    
    const literalLengthOffset = 16
    
    var literalLengthBase = []uint32{
    	16 | (1 << 24),
    	18 | (1 << 24),
    	20 | (1 << 24),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:44:06 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/EdgeState.java

    import javax.annotation.Nullable;
    import java.util.LinkedList;
    import java.util.List;
    
    /**
     * Represents the edges in the dependency graph.
     *
     * A dependency can have the following states:
     * 1. Unattached: in this case the state of the dependency is tied to the state of it's associated {@link SelectorState}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/plan.go

    	if err != nil {
    		return errors.Wrap(err, "[upgrade/versions] FATAL")
    	}
    
    	// Fetch the current state of the component configs
    	klog.V(1).Infoln("[upgrade/plan] analysing component config version states")
    	configVersionStates, err := componentconfigs.GetVersionStates(&initCfg.ClusterConfiguration, client)
    	if err != nil {
    		return errors.WithMessage(err, "[upgrade/versions] FATAL")
    	}
    
    	// No upgrades available
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  7. src/internal/trace/event/go122/event.go

    		Args:         []string{"dt"},
    		StartEv:      EvGoSyscallBegin,
    		IsTimedEvent: true,
    	},
    	EvGoStatus: event.Spec{
    		Name:         "GoStatus",
    		Args:         []string{"dt", "g", "m", "gstatus"},
    		IsTimedEvent: true,
    	},
    	EvSTWBegin: event.Spec{
    		Name:         "STWBegin",
    		Args:         []string{"dt", "kind_string", "stack"},
    		IsTimedEvent: true,
    		StackIDs:     []int{2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. pkg/kubelet/apis/config/validation/validation.go

    	allErrors := []error{}
    
    	// Make a local copy of the feature gates and combine it with the gates set by this configuration.
    	// This allows us to validate the config against the set of gates it will actually run against.
    	localFeatureGate := featureGate.DeepCopy()
    	if err := localFeatureGate.SetFromMap(kc.FeatureGates); err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. pkg/controller/daemon/util/daemonset_util_test.go

    			t.Errorf("Failed to append NodeAffinity in case %d, got: %v, expected: %v",
    				i, got, test.expected)
    		}
    	}
    }
    
    func forEachFeatureGate(t *testing.T, tf func(t *testing.T), gates ...featuregate.Feature) {
    	for _, fg := range gates {
    		for _, f := range []bool{true, false} {
    			func() {
    				featuregatetesting.SetFeatureGateDuringTest(t, utilfeature.DefaultFeatureGate, fg, f)
    				t.Run(fmt.Sprintf("%v (%t)", fg, f), tf)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/worker_api.adoc

    This states that the work should be run in a thread with minimal isolation. +
    For instance, it will share the same classloader that the task is loaded from.
    This is the fastest level of isolation.
    
    link:{javadocPath}/org/gradle/workers/WorkerExecutor.html#classLoaderIsolation-org.gradle.api.Action-[`WorkerExecutor.classLoaderIsolation()`]::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 13:41:08 UTC 2024
    - 17.7K bytes
    - Viewed (0)
Back to top