Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for Parallel (0.13 sec)

  1. src/cmd/link/internal/ld/dwarf.go

    	// Cache these type symbols, so as to avoid repeatedly looking them up
    	typeRuntimeEface loader.Sym
    	typeRuntimeIface loader.Sym
    	uintptrInfoSym   loader.Sym
    
    	// Used at various points in that parallel portion of DWARF gen to
    	// protect against conflicting updates to globals (such as "gdbscript")
    	dwmu *sync.Mutex
    }
    
    // dwSym wraps a loader.Sym; this type is meant to obey the interface
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Configuration time will still be spent the first time you run a particular set of tasks.
    However, you should see build performance improvement immediately because <<#config_cache:intro:performance_improvements,tasks will run in parallel>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	mutex sync.Mutex
    
    	// The indices of all claims that:
    	// - are allocated
    	// - use delayed allocation or the builtin controller
    	// - were not available on at least one node
    	//
    	// Set in parallel during Filter, so write access there must be
    	// protected by the mutex. Used by PostFilter.
    	unavailableClaims sets.Set[int]
    
    	informationsForClaim []informationForClaim
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        string dst_func_id;
        TF_RETURN_IF_ERROR(GetFunctionNameAttr(edge->dst(), &dst_func_id));
    
        // Ignore edges that are strictly contained within one subgraph, unless
        // we are constructing parallel check graphs.
        if (IsInSubgraph(src_func_id) && IsInSubgraph(dst_func_id) &&
            src_func_id == dst_func_id) {
          continue;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"multipart/byteranges",
    				"multipart/digest",
    				"multipart/encrypted",
    				"multipart/example",
    				"multipart/form-data",
    				"multipart/header-set",
    				"multipart/mixed",
    				"multipart/parallel",
    				"multipart/related",
    				"multipart/report",
    				"multipart/signed",
    				"multipart/voice-message",
    				"text/x-actionscript",
    				"text/x-ada",
    				"text/x-applescript",
    				"text/asp",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    						}
    
    						if denyNotFound {
    							name = name + "DenyNotFound"
    						} else {
    							name = name + "AllowNotFound"
    						}
    
    						t.Run(name, func(t *testing.T) {
    							t.Parallel()
    							// Test creating a policy with a cluster or namesapce-scoped param
    							// and binding with the provided configuration. Test will ensure
    							// that the provided configuration is capable of matching
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/filesystem_interface.h

      ///   * Must set `status` to `TF_OK` if all matches were returned.
      ///   * Might use any other error value for `status` to signal other errors.
      ///
      /// DEFAULT IMPLEMENTATION: Scans the directory tree (in parallel if possible)
      /// and fills `*entries`. Needs `get_children` and `is_directory`.
      int (*get_matching_paths)(const TF_Filesystem* filesystem, const char* glob,
                                char*** entries, TF_Status* status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  8. src/debug/elf/file_test.go

    					{0x7e1, 0x7ec},
    				},
    			},
    		},
    	},
    }
    
    func TestDWARFRelocations(t *testing.T) {
    	for _, test := range relocationTests {
    		test := test
    		t.Run(test.file, func(t *testing.T) {
    			t.Parallel()
    			f, err := Open(test.file)
    			if err != nil {
    				t.Fatal(err)
    			}
    			dwarf, err := f.DWARF()
    			if err != nil {
    				t.Fatal(err)
    			}
    			reader := dwarf.Reader()
    			idx := 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 60.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      // on GPU1. However, it should not be clustered with the previous node on
      // GPU1, because that will serialize production of its inputs that should be
      // done in parallel.
      //
      // This graph is:
      // (Const0, Const0) -> MatMul0
      // (Const1, Const1) -> MatMul1
      // (MatMul0, MatMul1) -> MatMulCombined
      //
      // Device0: [Const0, Const0, MatMul0]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	}
    
    	// Convert map to list.
    	var result []*kubecontainer.Pod
    	for _, pod := range pods {
    		result = append(result, pod)
    	}
    
    	// There are scenarios where multiple pods are running in parallel having
    	// the same name, because one of them have not been fully terminated yet.
    	// To avoid unexpected behavior on container name based search (for example
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top