Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for current_pos (0.36 sec)

  1. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/platform/BinaryNativePlatformIntegrationTest.groovy

        @ToBeFixedForConfigurationCache
        def "can configure binary for multiple target operating systems"() {
            String currentOs
            if (os.windows) {
                currentOs = "windows"
            } else if (os.linux) {
                currentOs = "linux"
            } else if (os.macOsX) {
                currentOs = "osx"
            } else {
                throw new AssertionError("Unexpected operating system")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/quantization_context.cc

      });
      return success();
    }
    
    void QuantizeContext::DumpStates(quantfork::QuantizeRegionOp current_op) {
      if (current_op) {
        llvm::errs() << "\n\n\n" << current_op.getLogicalKernel() << "\n";
      }
      func_.walk([&](quantfork::QuantizeRegionOp op) {
        if (current_op == op) llvm::errs() << "===>>>";
        llvm::errs() << op.getLogicalKernel() << " : (";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 08 01:38:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. internal/disk/disk.go

    type IOStats struct {
    	ReadIOs        uint64
    	ReadMerges     uint64
    	ReadSectors    uint64
    	ReadTicks      uint64
    	WriteIOs       uint64
    	WriteMerges    uint64
    	WriteSectors   uint64
    	WriteTicks     uint64
    	CurrentIOs     uint64
    	TotalTicks     uint64
    	ReqTicks       uint64
    	DiscardIOs     uint64
    	DiscardMerges  uint64
    	DiscardSectors uint64
    	DiscardTicks   uint64
    	FlushIOs       uint64
    	FlushTicks     uint64
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/event/ExecutionEventLogger.java

                }
    
                // path to pom.xml
                File currentPom = project.getFile();
                if (currentPom != null) {
                    MavenSession session = event.getSession();
                    Path current = currentPom.toPath().toAbsolutePath().normalize();
                    Path topDirectory = session.getTopDirectory();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 03 17:49:40 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/util_test.go

    	require.Equal(t, currentStorageRV, rsRV, "expected the global etcd RV to be equal to replicaset's RV")
    
    	// ensure that the pod's RV hasn't been changed
    	currentPod := getPod(pod.Name, pod.Namespace)
    	currentPodRV, err := versioner.ParseResourceVersion(currentPod.ResourceVersion)
    	require.NoError(t, err)
    	require.Equal(t, currentPodRV, podRV, "didn't expect to see the pod's RV changed")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 11 12:07:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. cmd/metrics-realtime.go

    				ReadTicks:      st.ReadTicks,
    				WriteIOs:       st.WriteIOs,
    				WriteMerges:    st.WriteMerges,
    				WriteSectors:   st.WriteSectors,
    				WriteTicks:     st.WriteTicks,
    				CurrentIOs:     st.CurrentIOs,
    				TotalTicks:     st.TotalTicks,
    				ReqTicks:       st.ReqTicks,
    				DiscardIOs:     st.DiscardIOs,
    				DiscardMerges:  st.DiscardMerges,
    				DiscardSectors: st.DiscardSectors,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:16:24 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/lift_as_function_call.cc

      SmallVector<Operation*> sorted_ops;
      absl::flat_hash_set<Operation*> unique_ops;
      while (!op_stack.empty()) {
        Operation* current_op = op_stack.top();
        op_stack.pop();
        if (unique_ops.contains(current_op)) continue;
        sorted_ops.push_back(current_op);
        unique_ops.insert(current_op);
      }
      return sorted_ops;
    }
    
    // Finds the name of each attribute in `attributes` and set the attr_map
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	for {
    		currentPod := p.startingPod
    		if p.numUpdates > 0 {
    			currentPod = p.updatePod
    		}
    		p.numUpdates++
    
    		// Remember the current resource version
    		currentResourceVersion := currentPod.ResourceVersion
    
    		obj, err := objInfo.UpdatedObject(ctx, currentPod)
    		if err != nil {
    			return nil, false, err
    		}
    		inPod := obj.(*example.Pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  9. internal/disk/stat_linux.go

    		ReadMerges:   stats[1],
    		ReadSectors:  stats[2],
    		ReadTicks:    stats[3],
    		WriteIOs:     stats[4],
    		WriteMerges:  stats[5],
    		WriteSectors: stats[6],
    		WriteTicks:   stats[7],
    		CurrentIOs:   stats[8],
    		TotalTicks:   stats[9],
    		ReqTicks:     stats[10],
    	}
    	// as per the doc, only 11 fields are guaranteed
    	// only set if available
    	if len(stats) > 14 {
    		iostats.DiscardIOs = stats[11]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 19:34:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/executor_tpuv1_island_coarsening.cc

      op_worklist.push(candidate_island);
    
      while (!op_worklist.empty()) {
        IslandOp current_op = op_worklist.front();
        op_worklist.pop();
        ops.clear();
        if (incoming) {
          collect_input_defining_islands(current_op, ops);
        } else {
          collect_output_users_islands(current_op, ops);
        }
        for (IslandOp wrapper : ops) {
          Operation* wrapped_op = &wrapper.GetBody().front();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 27.6K bytes
    - Viewed (0)
Back to top