Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 8,104 for Bind (0.03 sec)

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

                bind(IsolatedArrayCodec)
                bind(IsolatedSetCodec)
                bind(IsolatedListCodec)
                bind(IsolatedMapCodec)
                bind(MapEntrySnapshotCodec)
                bind(IsolatedEnumValueSnapshotCodec)
                bind(StringValueSnapshotCodec)
                bind(IntegerValueSnapshotCodec)
                bind(FileValueSnapshotCodec)
                bind(BooleanValueSnapshotCodec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. pilot/pkg/model/gateway.go

    func gatewayRDSRouteName(server *networking.Server, portNumber uint32, cfg config.Config) string {
    	p := protocol.Parse(server.Port.Protocol)
    	bind := ""
    	if server.Bind != "" {
    		bind = "." + server.Bind
    	}
    	if p.IsHTTP() {
    		return "http" + "." + strconv.Itoa(int(portNumber)) + bind // Format: http.%d.%s
    	}
    
    	if p == protocol.HTTPS && !gateway.IsPassThroughServer(server) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    		//
    		// If captureMode is not NONE, i.e., bindToPort is false, then
    		// we will bind to user specified IP (if any) or to the VIPs of services in
    		// this egress listener.
    		if egressListener.IstioListener != nil && egressListener.IstioListener.Bind != "" {
    			bind.binds = []string{egressListener.IstioListener.Bind}
    		} else if bind.bindToPort {
    			bind.binds = actualLocalHosts
    		}
    
    		if egressListener.IstioListener != nil &&
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. maven-di/src/main/java/org/apache/maven/di/impl/InjectorImpl.java

                    Binding<Object> bind = ReflectionUtils.bindingFromMethod(method).scope(scope);
                    for (Type t : Types.getAllSuperTypes(returnType)) {
                        if (types == null || types.contains(Types.getRawType(t))) {
                            bind(Key.ofType(t, qualifier), bind);
                            if (qualifier != null) {
                                bind(Key.ofType(t), bind);
                            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/guava-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/guava/BindingsBuilderExtensions.kt

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.serialize.codecs.guava
    
    import org.gradle.internal.serialize.graph.codecs.BindingsBuilder
    
    
    fun BindingsBuilder.guavaTypes() {
        bind(ImmutableListCodec)
        bind(ImmutableSetCodec)
        bind(ImmutableMapCodec)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 859 bytes
    - Viewed (0)
  10. cni/pkg/repair/netns.go

    // under the procfs, /proc/<pid>/ns/net. In majority of cases, this is not used directly, but is rather bind mounted to
    // /var/run/netns/<name>. However, this pattern is not ubiquitous. Some platforms bind mount to other places. As we run
    // in a pod, we cannot just access any arbitrary file they happen to bind mount in, as we don't know ahead of time where
    // it might be.
    //
    // Instead, we rely directly on the procfs.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 04:07:10 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top