Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 42 for relu (0.04 sec)

  1. platforms/core-configuration/stdlib-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/stdlib/CollectionCodecs.kt

    val linkedHashMapCodec: Codec<LinkedHashMap<Any?, Any?>> = mapCodec { LinkedHashMap(it) }
    
    
    val concurrentHashMapCodec: Codec<ConcurrentHashMap<Any?, Any?>> = mapCodec { ConcurrentHashMap<Any?, Any?>(it) }
    
    
    /*
     * Cannot rely on Java serialization as
     * Hashtable's readObject() calls unsupported ObjectInputStream#readFields().
     */
    val hashtableCodec: Codec<Hashtable<Any?, Any?>> = mapCodec { Hashtable(it) }
    
    
    /*
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 20:43:52 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/componentconfigs/kubelet_windows.go

    	// This trips client-go and the kubelet, creating problems on Windows nodes.
    	// Fixing it in client-go or the kubelet is a breaking change to existing Windows
    	// users that rely on relative paths:
    	//   https://github.com/kubernetes/kubernetes/pull/77710#issuecomment-491989621
    	//
    	// Thus, a workaround here is to adapt the KubeletConfiguration paths for Windows.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 10:26:46 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/PluginStructureProvider.kt

            registerApplicationServices(application, pluginRelativePath, application.classLoader)
        }
    
        /**
         * TODO (KT-68186): This is a workaround for [KT-68186](https://youtrack.jetbrains.com/issue/KT-68186). We cannot rely on the
         * application's class loader for now, so we have to use the configured class loader manually.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/looprotate.go

    		// Place b after p.
    		for _, b := range after[p.ID] {
    			move[b.ID] = struct{}{}
    		}
    	}
    
    	// Move blocks to their destinations in a single pass.
    	// We rely here on the fact that loop headers must come
    	// before the rest of the loop.  And that relies on the
    	// fact that we only identify reducible loops.
    	j := 0
    	// Some blocks that are not part of a loop may be placed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/api/internal/initialization/transform/utils/InstrumentationClasspathMerger.java

                .map(ClassPathTransformedArtifact::ofTransformedArtifact)
                // We sort based on the original classpath to we keep the original order,
                // we also rely on the fact that for ordered streams `sorted()` method has stable sort.
                .sorted((first, second) -> ordering.compare(first.originalIdentifier, second.originalIdentifier))
                .map(artifact -> artifact.file)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 19:11:55 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. pkg/kubelet/runtime.go

    	storageError             error
    	cidr                     string
    	healthChecks             []*healthCheck
    	rtHandlers               []kubecontainer.RuntimeHandler
    }
    
    // A health check function should be efficient and not rely on external
    // components (e.g., container runtime).
    type healthCheckFnType func() (bool, error)
    
    type healthCheck struct {
    	name string
    	fn   healthCheckFnType
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 00:48:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/testdata/loong64enc1.s

    	MULH	R4, R5	   		// a5901c00
    	MULH	R4, R5, R6	   	// a6901c00
    	MULHU	R4, R5			// a5101d00
    	MULHU	R4, R5, R6		// a6101d00
    	REM	R4, R5	  		// a5902000
    	REM	R4, R5, R6	  	// a6902000
    	REMU	R4, R5	   		// a5902100
    	REMU	R4, R5, R6	   	// a6902100
    	DIV	R4, R5	  		// a5102000
    	DIV	R4, R5, R6	  	// a6102000
    	DIVU	R4, R5	   		// a5102100
    	DIVU	R4, R5, R6	   	// a6102100
    	SRLV	R4, R5 			// a5101900
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.h

    // Declares pure virtual member functions for a python-side derived class to
    // override. This allows calling python implementations from the C++ layer.
    // Member functions should be pure not stateful; they should not access or rely
    // on member fields.
    class PyFunctionLibrary {
     public:
      virtual ~PyFunctionLibrary() = default;
    
      // Saves `exported_model` to `dst_saved_model_path` as SavedModel.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  9. pkg/util/filesystem/util_windows.go

    	}
    
    	klog.V(6).InfoS("Function IsUnixDomainSocket starts", "filePath", filePath)
    	// As detailed in https://github.com/kubernetes/kubernetes/issues/104584 we cannot rely
    	// on the Unix Domain socket working on the very first try, hence the potential need to
    	// dial multiple times
    	var lastSocketErr error
    	err := wait.PollImmediate(socketDialRetryPeriod, socketDialTimeout,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. cni/pkg/repair/netns.go

    // 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.
    // This rules out two possible methods:
    // * use crictl to inspect the pod; this returns the bind-mounted network namespace file.
    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