Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for eventual (0.36 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/Lifecycle.java

     */
    package org.apache.maven.lifecycle;
    
    import java.util.*;
    import java.util.stream.Collectors;
    
    import org.apache.maven.lifecycle.mapping.LifecyclePhase;
    
    /**
     * Lifecycle definition, with eventual plugin bindings (when they are not packaging-specific).
     */
    public class Lifecycle {
        public Lifecycle() {}
    
        public Lifecycle(String id, List<String> phases, Map<String, LifecyclePhase> defaultPhases) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. pkg/controlplane/apiserver/apis.go

    func (c *CompletedConfig) NewCoreGenericConfig() *corerest.GenericConfig {
    	return &corerest.GenericConfig{
    		StorageFactory:              c.Extra.StorageFactory,
    		EventTTL:                    c.Extra.EventTTL,
    		LoopbackClientConfig:        c.Generic.LoopbackClientConfig,
    		ServiceAccountIssuer:        c.Extra.ServiceAccountIssuer,
    		ExtendExpiration:            c.Extra.ExtendExpiration,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/IsolatedActionCodecsFactory.kt

                    unsupportedProviderTypes()
                    bind(BeanCodec)
                }.build()
            )
    
        /**
         * Value sources and build services are currently unsupported but could eventually
         * be captured as part of the serialized action [environment][org.gradle.internal.cc.impl.isolation.SerializedIsolatedActionGraph.environment]
         **/
        private
        fun BindingsBuilder.unsupportedProviderTypes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/DefaultBuildTreeLocalComponentProvider.java

        }
    
        /**
         * Copes the component identified by {@code projectIdentifier}, except with its identifier replaced with the foreign counterpart.
         *
         * <p>Eventually, in Gradle 9.0, when {@link BuildIdentifier#isCurrentBuild()} is removed, all this logic can disappear.</p>
         */
        private LocalComponentGraphResolveState copyComponentWithForeignId(ProjectComponentIdentifier projectIdentifier) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:21:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  5. manifests/charts/ztunnel/values.yaml

      logLevel: info
    
      # Set to `type: RuntimeDefault` to use the default profile if available.
      seLinuxOptions: {}
      # TODO Ambient inpod - for OpenShift, set to the following to get writable sockets in hostmounts to work, eventually consider CSI driver instead
      #seLinuxOptions:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/internal/trace/reader_test.go

    			case trace.EventRegionBegin, trace.EventRegionEnd:
    				ev.Region()
    			case trace.EventTaskBegin, trace.EventTaskEnd:
    				ev.Task()
    			case trace.EventSync:
    			case trace.EventStackSample:
    			case trace.EventBad:
    			}
    		}
    	})
    }
    
    func testReader(t *testing.T, tr io.Reader, exp *testtrace.Expectation) {
    	r, err := trace.NewReader(tr)
    	if err != nil {
    		if err := exp.Check(err); err != nil {
    			t.Error(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/typeparam.go

    	id    uint64    // unique id, for debugging only
    	obj   *TypeName // corresponding type name
    	index int       // type parameter index in source order, starting at 0
    	bound Type      // any type, but underlying is eventually *Interface for correct programs (see TypeParam.iface)
    }
    
    // NewTypeParam returns a new TypeParam. Type parameters may be set on a Named
    // or Signature type by calling SetTypeParams. Setting a type parameter on more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. src/go/types/typeparam.go

    	id    uint64    // unique id, for debugging only
    	obj   *TypeName // corresponding type name
    	index int       // type parameter index in source order, starting at 0
    	bound Type      // any type, but underlying is eventually *Interface for correct programs (see TypeParam.iface)
    }
    
    // NewTypeParam returns a new TypeParam. Type parameters may be set on a Named
    // or Signature type by calling SetTypeParams. Setting a type parameter on more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. pkg/kube/krt/informer.go

    	res := i.inf.List(metav1.NamespaceAll, klabels.Everything())
    	return res
    }
    
    func (i *informer[I]) GetKey(k Key[I]) *I {
    	// ns, n := splitKeyFunc(string(k))
    	// Internal optimization: we know kclient will eventually lookup "ns/name"
    	// We also have a key in this format.
    	// Rather than split and rejoin it later, just pass it as the name
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 11:01:46 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. hack/golangci-hints.yaml

        # This check currently has some false positives (https://github.com/nunnatsa/ginkgolinter/issues/91).
        - linters:
           - ginkgolinter
          text: use a function call in (Eventually|Consistently)
    
        # https://github.com/kubernetes/kubernetes/issues/117288#issuecomment-1507012435
        - linters:
            - gocritic
          text: "ifElseChain: rewrite if-else to switch statement"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top