Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 113 for nextch (0.21 sec)

  1. pkg/ctrlz/topics/assets/templates/mem.html

            <td>StackSys</td>
            <td id="StackSys">{{.StackSys}} bytes</td>
            <td>Stack memory obtained from the OS.</td>
        </tr>
    
        <tr>
            <td>NextGC</td>
            <td id="NextGC">{{.NextGC}} bytes</td>
            <td>Target heap size of the next GC cycle.</td>
        </tr>
    
        <tr>
            <td>LastGC</td>
            <td id="LastGC"></td>
            <td>The time the last garbage collection finished.</td>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/math/ToDoubleRounder.java

            return (cmpXToRoundArbitrarily <= 0) ? roundArbitrarily : Math.nextUp(roundArbitrarily);
          case DOWN:
            if (sign(x) >= 0) {
              return (cmpXToRoundArbitrarily >= 0)
                  ? roundArbitrarily
                  : DoubleUtils.nextDown(roundArbitrarily);
            } else {
              return (cmpXToRoundArbitrarily <= 0) ? roundArbitrarily : Math.nextUp(roundArbitrarily);
            }
          case UP:
            if (sign(x) >= 0) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  3. pkg/wasm/monitoring.go

    	resultTag = monitoring.CreateLabel("result")
    
    	wasmCacheEntries = monitoring.NewGauge(
    		"wasm_cache_entries",
    		"number of Wasm remote fetch cache entries.",
    	)
    
    	wasmCacheLookupCount = monitoring.NewSum(
    		"wasm_cache_lookup_count",
    		"number of Wasm remote fetch cache lookups.",
    	)
    
    	wasmRemoteFetchCount = monitoring.NewSum(
    		"wasm_remote_fetch_count",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ToolingApiBuildEventListenerFactory.java

        private ProblemsProgressEventConsumer createProblemsProgressConsumer(ProgressEventConsumer progressEventConsumer) {
            Supplier<OperationIdentifier> operationIdentifierSupplier = () -> new OperationIdentifier(idFactory.nextId());
            AggregatingProblemConsumer aggregator = new AggregatingProblemConsumer(progressEventConsumer, operationIdentifierSupplier);
            this.problemAggregator = Optional.of(aggregator);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/internal/tasks/testing/operations/TestListenerBuildOperationAdapter.java

                .details(details)
                .build(newOperationIdentifier(), parentId);
        }
    
        private OperationIdentifier newOperationIdentifier() {
            return new OperationIdentifier(buildOperationIdFactory.nextId());
        }
    
        private static class Details implements ExecuteTestBuildOperationType.Details {
            private final TestDescriptor testDescriptor;
            private final long startTime;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. pkg/test/echo/server/endpoint/tcp.go

    	"istio.io/istio/pkg/test/echo/common"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    var _ Instance = &tcpInstance{}
    
    type tcpInstance struct {
    	Config
    	l net.Listener
    }
    
    func newTCP(config Config) Instance {
    	return &tcpInstance{
    		Config: config,
    	}
    }
    
    func (s *tcpInstance) GetConfig() Config {
    	return s.Config
    }
    
    func (s *tcpInstance) Start(onReady OnReadyFunc) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 16:20:31 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/get_insecure_no_longer_supported.txt

    # GOPATH: Set up
    env GO111MODULE=off
    
    # GOPATH: Fetch with insecure, should error
    ! go get -insecure test
    stderr 'go: -insecure flag is no longer supported; use GOINSECURE instead'
    
    # Modules: Set up
    env GO111MODULE=on
    
    # Modules: Fetch with insecure, should error
    ! go get -insecure test
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 364 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/function-order.mlir

    // CHECK-NEXT:         value {
    // CHECK-NEXT:           tensor {
    // CHECK-NEXT:             dtype: DT_INT32
    // CHECK-NEXT:             tensor_shape {
    // CHECK-NEXT:             }
    // CHECK-NEXT:             int_val: 1
    // CHECK-NEXT:           }
    // CHECK-NEXT:         }
    // CHECK-NEXT:       }
    // CHECK:          }
    // CHECK:          node_def {
    // CHECK-NEXT:       name: "tf.Empty"
    // CHECK-NEXT:       op: "Empty"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 17 18:52:47 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/mlir2graphdef/function-control-ret.mlir

            tf_executor.yield %1 : tensor<i32>
          }
          // CHECK: control_output: "control_const"
          // CHECK:       control_ret {
          // CHECK-NEXT:    key: "control_const"
          // CHECK-NEXT:    value: "control_const"
          // CHECK-NEXT:  }
          tf_executor.fetch %0#1 : !tf_executor.control
        }
        func.return
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 1004 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/launch_outlining.mlir

            %3 = "tf.A"() : () -> tensor<?xi32>
            tf_device.return %3 : tensor<?xi32>
          }) {device = "/device:test_device:0"} : () -> tensor<?xi32>
        // CHECK: tf_executor.fetch %[[LAUNCH_OUTPUT]]
        tf_executor.fetch %1#0 : tensor<?xi32>
      }
      func.return %0 : tensor<?xi32>
    }
    
    // CHECK: func private @[[LAUNCH]]
    // CHECK-SAME: () -> tensor<?xi32>
    // CHECK: %[[A_OUTPUT:[0-9]*]] = "tf.A"()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 4.6K bytes
    - Viewed (0)
Back to top