Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of about 10,000 for Bind (0.08 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/IsolatedActionCodecsFactory.kt

            supportedPropertyTypes()
            groovyCodecs()
            bind(ExternalizableCodec)
    
            bind(RegularFileCodec(fileFactory))
            bind(DirectoryCodec(fileFactory))
    
            bind(LoggerCodec)
            bind(ProxyCodec)
    
            bind(ServicesCodec)
    
            bind(JavaObjectSerializationCodec(javaSerializationEncodingLookup))
            bind(BeanCodec)
        }.build()
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/BindingsBuilderExtensions.kt

        bind(linkedHashMapCodec)
        bind(hashMapCodec)
        bind(treeMapCodec)
        bind(concurrentHashMapCodec)
        bind(propertiesCodec)
        bind(hashtableCodec)
    
        // Arrays
        bind(BYTE_ARRAY_SERIALIZER)
        bind(ShortArrayCodec)
        bind(IntArrayCodec)
        bind(LongArrayCodec)
        bind(FloatArrayCodec)
        bind(DoubleArrayCodec)
        bind(BooleanArrayCodec)
        bind(CharArrayCodec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. hack/testdata/rollingupdate-daemonset-rv2.yaml

    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: bind
      labels:
        service: bind
    spec:
      selector:
        matchLabels:
          service: bind
      updateStrategy:
        type: RollingUpdate
        rollingUpdate:
          maxUnavailable: 10%
      template:
        metadata:
          labels:
            service: bind
        spec:
          affinity:
            podAntiAffinity:
              requiredDuringSchedulingIgnoredDuringExecution:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 802 bytes
    - Viewed (0)
  4. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/UnsupportedTypesCodecs.kt

        bind(unsupported<Gradle>())
        bind(unsupported<Settings>())
        bind(unsupported<Project>())
        bind(unsupported<IsolatedProject>())
        bind(unsupported<TaskContainer>())
        bind(unsupported<TaskDependency>())
        bind(unsupported<SourceSetContainer>())
        bind(unsupported<SourceSet>())
    
        // Dependency Resolution Types
        bind(unsupported<ConfigurationContainer>())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BindingsBackedCodec.kt

        inline fun <reified T> bind(codec: Codec<T>) =
            bind(T::class.java, codec)
    
        inline fun <reified T> bind(serializer: Serializer<T>) =
            bind(T::class.java, serializer)
    
        fun bind(type: KClass<*>, codec: Codec<*>) =
            bind(type.java, codec)
    
        fun bind(type: KClass<*>, serializer: Serializer<*>) =
            bind(type.java, serializer)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. hack/testdata/rollingupdate-daemonset.yaml

    apiVersion: apps/v1
    kind: DaemonSet
    metadata:
      name: bind
      labels:
        service: bind
    spec:
      selector:
        matchLabels:
          service: bind
      updateStrategy:
        type: RollingUpdate
        rollingUpdate:
          maxUnavailable: 10%
      template:
        metadata:
          labels:
            service: bind
        spec:
          affinity:
            podAntiAffinity:
              requiredDuringSchedulingIgnoredDuringExecution:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 735 bytes
    - Viewed (0)
  7. pkg/scheduler/profile/profile_test.go

    							},
    						},
    						Bind: config.PluginSet{
    							Enabled: []config.Plugin{
    								{Name: "Bind1"},
    							},
    						},
    					},
    				},
    				{
    					SchedulerName: "profile-2",
    					Plugins: &config.Plugins{
    						QueueSort: config.PluginSet{
    							Enabled: []config.Plugin{
    								{Name: "QueueSort"},
    							},
    						},
    						Bind: config.PluginSet{
    							Enabled: []config.Plugin{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 20 09:49:54 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScopeModule.java

            bind(MojoExecutionScope.class).toInstance(scope);
            bind(MavenProject.class)
                    .toProvider(MojoExecutionScope.seededKeyProvider())
                    .in(scope);
            bind(MojoExecution.class)
                    .toProvider(MojoExecutionScope.seededKeyProvider())
                    .in(scope);
            bind(Log.class).toProvider(MojoExecutionScope.seededKeyProvider()).in(scope);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:45:47 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. pkg/flag/flag.go

    type Flaggable interface {
    	string | bool | uint16 | time.Duration
    }
    
    var replacer = strings.NewReplacer("-", "_")
    
    // Bind registers a flag to the FlagSet. When parsed, the value will be set via pointer.
    // Usage:
    //
    //	cfg := Config{Foo: "default-foo"}
    //	flag.Bind(fs, "foo", "f", "the foo value", &cfg.Foo)
    func Bind[T Flaggable](fs *pflag.FlagSet, name, shorthand, usage string, val *T) {
    	switch d := any(val).(type) {
    	case *string:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 01 04:37:36 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScopeModule.java

            bind(SessionScope.class).toInstance(scope);
    
            bind(MavenSession.class)
                    .toProvider(SessionScope.seededKeyProvider(MavenSession.class))
                    .in(scope);
            bind(Session.class)
                    .toProvider(SessionScope.seededKeyProvider(Session.class))
                    .in(scope);
            bind(InternalMavenSession.class)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top