Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 156 for predates (0.13 sec)

  1. cmd/kubeadm/app/kubeadm.go

    */
    
    package app
    
    import (
    	"flag"
    	"os"
    
    	"github.com/spf13/pflag"
    
    	cliflag "k8s.io/component-base/cli/flag"
    	"k8s.io/klog/v2"
    
    	"k8s.io/kubernetes/cmd/kubeadm/app/cmd"
    )
    
    // Run creates and executes new kubeadm command
    func Run() error {
    	var allFlags flag.FlagSet
    	klog.InitFlags(&allFlags)
    	// only add the flags that are still supported for kubeadm
    	allFlags.VisitAll(func(f *flag.Flag) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 04:38:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/intstr/intstr.go

    		klog.Errorf("value: %d overflows int32\n%s\n", val, debug.Stack())
    	}
    	return IntOrString{Type: Int, IntVal: int32(val)}
    }
    
    // FromInt32 creates an IntOrString object with an int32 value.
    func FromInt32(val int32) IntOrString {
    	return IntOrString{Type: Int, IntVal: val}
    }
    
    // FromString creates an IntOrString object with a string value.
    func FromString(val string) IntOrString {
    	return IntOrString{Type: String, StrVal: val}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheStateStore.kt

        /**
         * Writes some value to zero or more state files.
         */
        fun <T> useForStore(action: (ConfigurationCacheRepository.Layout) -> T): T
    
        /**
         * Creates a new [ValueStore] that can be used to load and store multiple values.
         */
        fun <T> createValueStore(
            stateType: StateType,
            writer: ValueStore.Writer<T>,
            reader: ValueStore.Reader<T>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ServiceRegistryBuilderTest.groovy

    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import spock.lang.Specification
    
    class ServiceRegistryBuilderTest extends Specification {
    
        def "creates a scope-validating service registry when setting a scope"() {
            def scopedBuilder = ServiceRegistryBuilder.builder()
                .scope(Scope.Build)
    
            when:
            scopedBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestStartEvent.java

        }
    
        public long getStartTime() {
            return startTime;
        }
    
        @Nullable
        public Object getParentId() {
            return parentId;
        }
    
        /**
         * Creates a copy of this event with a new parent id.
         */
        public TestStartEvent withParentId(Object parentId) {
            return new TestStartEvent(startTime, parentId);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileTreeIntegrationTest.groovy

    
    import spock.lang.Issue
    
    class ConfigurationCacheFileTreeIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        @Issue('https://github.com/gradle/gradle/issues/19780')
        def "filter predicates and matching patterns are evaluated lazily"() {
            given:
            buildFile """
                abstract class PrintInputs extends DefaultTask {
    
                    @InputFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/IoTestCase.java

          if (resourceUrl == null) {
            return null;
          }
          copy(resourceUrl, file);
        }
    
        return file;
      }
    
      /**
       * Creates a new temp dir for testing. The returned directory and all contents of it will be
       * deleted in the tear-down for this test.
       */
      protected final File createTempDir() throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 12:36:13 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuild.kt

        fun registerRootProject(rootProjectName: String, projectDir: File, buildDir: File)
    
        fun registerProject(projectPath: Path, dir: File, buildDir: File)
    
        fun getProject(path: String): ProjectInternal
    
        // Creates all registered projects for this build
        fun createProjects()
    
        fun addIncludedBuild(buildDefinition: BuildDefinition, settingsFile: File?, buildPath: Path): ConfigurationCacheBuild
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtSubstitutorProvider.kt

            superClass: KaClassOrObjectSymbol,
        ): KaSubstitutor?
    }
    
    public typealias KtSubstitutorProvider = KaSubstitutorProvider
    
    public interface KaSubstitutorProviderMixIn : KaSessionMixIn {
        /**
         * Creates a [KaSubstitutor] based on the inheritance relationship between [subClass] and [superClass].
         *
         * The semantic of resulted [KaSubstitutor] is the substitutor that should be applied to a member of [superClass],
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/mime/multipart/writer.go

    }
    
    func randomBoundary() string {
    	var buf [30]byte
    	_, err := io.ReadFull(rand.Reader, buf[:])
    	if err != nil {
    		panic(err)
    	}
    	return fmt.Sprintf("%x", buf[:])
    }
    
    // CreatePart creates a new multipart section with the provided
    // header. The body of the part should be written to the returned
    // [Writer]. After calling CreatePart, any previous part may no longer
    // be written to.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top