Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 363 for creators (0.2 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. pilot/pkg/xds/discovery.go

    				}
    			}()
    		}
    	}
    }
    
    // initPushContext creates a global push context and stores it on the environment. Note: while this
    // method is technically thread safe (there are no data races), it should not be called in parallel;
    // if it is, then we may start two push context creations (say A, and B), but then write them in
    // reverse order, leaving us with a final version of A, which may be incomplete.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. android/guava/src/com/google/common/collect/Sets.java

          Iterable<E> iterable, Class<E> elementType) {
        EnumSet<E> set = EnumSet.noneOf(elementType);
        Iterables.addAll(set, iterable);
        return set;
      }
    
      // HashSet
    
      /**
       * Creates a <i>mutable</i>, initially empty {@code HashSet} instance.
       *
       * <p><b>Note:</b> if mutability is not required, use {@link ImmutableSet#of()} instead. If {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/MultiProjectJvmApplicationInitIntegrationTest.groovy

            packageName.replace('.', '/')
        }
    }
    
    abstract class AbstractMultiProjectJvmApplicationInitIntegrationTest1 extends AbstractMultiProjectJvmApplicationInitIntegrationTest {
        def "creates multi-project application sample when incubating flag = #incubating"() {
            given:
            def dsl = buildDsl
            def language = jvmLanguage.name
            def ext = jvmLanguage.extension
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestFrameworkTest.groovy

        private project = ProjectBuilder.builder().build()
        Test testTask = TestUtil.createTask(Test, project)
    
        void setup() {
            project.ext.sourceCompatibility = "1.7"
        }
    
        void "creates test class processor"() {
            when:
            def framework = createFramework()
            def processor = framework.getProcessorFactory().create(Mock(IdGenerator), Mock(ActorFactory), Mock(Clock))
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top