Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 383 for get2s (0.04 sec)

  1. src/runtime/atomic_pointer.go

    // See go.dev/issue/67401.
    //
    //go:linkname atomicwb
    //go:nosplit
    func atomicwb(ptr *unsafe.Pointer, new unsafe.Pointer) {
    	slot := (*uintptr)(unsafe.Pointer(ptr))
    	buf := getg().m.p.ptr().wbBuf.get2()
    	buf[0] = *slot
    	buf[1] = uintptr(new)
    }
    
    // atomicstorep performs *ptr = new atomically and invokes a write barrier.
    //
    //go:nosplit
    func atomicstorep(ptr unsafe.Pointer, new unsafe.Pointer) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.h

        absl::string_view saved_model_path,
        const std::unordered_set<std::string>& tags,
        const std::vector<std::string>& signature_keys,
        MLIRContext& ctx ABSL_ATTRIBUTE_LIFETIME_BOUND);
    
    // Gets the function aliases from the SavedModel.
    absl::StatusOr<absl::flat_hash_map<FunctionName, FunctionAlias>>
    GetFunctionAliases(absl::string_view saved_model_path,
                       const std::unordered_set<std::string>& tags);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/internal/trace/testdata/generators/go122-create-syscall-reuse-thread-id.go

    // in the trace have unique IDs, since the P just stays associated
    // with an eternally dead thread, and it's stolen by some other
    // thread later. But if thread IDs are reused, then the tracer
    // gets confused when trying to advance events on the new thread.
    // The now-dead thread which exited on a GoDestroySyscall still has
    // its P associated and this transfers to the newly-live thread
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/ResolutionStrategyInternal.java

         *
         * Defaults to false.
         */
        void setKeepStateRequiredForGraphResolution(boolean keepStateRequiredForGraphResolution);
    
        /**
         * Gets the current expiry policy for dynamic revisions.
         *
         * @return the expiry policy
         */
        CachePolicy getCachePolicy();
    
        /**
         * Until the feature 'settles' and we receive more feedback, it's internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  5. cmd/kubelet/app/plugins.go

    	allPlugins = append(allPlugins, local.ProbeVolumePlugins()...)
    	allPlugins = append(allPlugins, csi.ProbeVolumePlugins()...)
    	return allPlugins, nil
    }
    
    // GetDynamicPluginProber gets the probers of dynamically discoverable plugins
    // for kubelet.
    // Currently only Flexvolume plugins are dynamically discoverable.
    func GetDynamicPluginProber(pluginDir string, runner exec.Interface) volume.DynamicPluginProber {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 13 21:09:52 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/composite_utils.h

    }
    
    // Changes a DenseIntElementsAttr **containing I64** elements to an I32 Vector.
    bool DenseI64AttrToI32Vector(const DenseIntElementsAttr& dense_attr,
                                 std::vector<int32_t>* out_vec);
    
    // Gets boolean from composite attrs if it exists.
    std::optional<bool> GetBoolFromCompositeAttr(
        const DictionaryAttr& composite_attrs, llvm::StringRef attr_name);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 29 18:33:05 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. cmd/net_test.go

    		},
    		// Non parsable ip is assumed to be hostame and gets preserved
    		// as the left most elements, regardless of IP based sorting.
    		{
    			ipList:       []string{"hostname", "127.0.0.1", "192.168.1.106"},
    			sortedIPList: []string{"hostname", "192.168.1.106", "127.0.0.1"},
    		},
    		// Non parsable ip is assumed to be hostname, with a mixed input of ip and hostname.
    		// gets preserved and moved into left most elements, regardless of
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 08:43:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/passes/merge_save_function_ops_to_main.cc

    };
    
    // Returns true iff func_op has either no Region or the body has no Blocks.
    bool IsFuncOpEmpty(func::FuncOp func_op) {
      return func_op->getNumRegions() == 0 || func_op.getBody().empty();
    }
    
    // Gets the GraphOp from the function op. Returns an empty op iff it doesn't
    // exist.
    GraphOp GetGraphOpFromFuncOp(func::FuncOp func_op) {
      if (IsFuncOpEmpty(func_op)) return {};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/staticpods.go

    	PatchesDir() string
    	// RealManifestPath gets the file path for the component in the "real" static pod manifest directory used by the kubelet
    	RealManifestPath(component string) string
    	// RealManifestDir should point to the static pod manifest directory used by the kubelet
    	RealManifestDir() string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/plugins/JacocoTaskExtension.java

        /**
         * The types of output that the agent can use for execution data.
         */
        public enum Output {
            FILE,
            TCP_SERVER,
            TCP_CLIENT,
            NONE;
    
            /**
             * Gets type in format of agent argument.
             */
            public String getAsArg() {
                return toString().toLowerCase(Locale.US).replaceAll("_", "");
            }
        }
    
        private final JacocoAgentJar agent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 14:04:39 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top