Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 128 for usedBy (0.18 sec)

  1. pkg/proxy/nftables/proxier_test.go

    						// this endpoint should not be used since it is both terminating and not ready.
    						Addresses: []string{"10.0.1.4"},
    						Conditions: discovery.EndpointConditions{
    							Ready:       ptr.To(false),
    							Serving:     ptr.To(false),
    							Terminating: ptr.To(true),
    						},
    						NodeName: ptr.To("another-host"),
    					},
    					{
    						// this endpoint should be used since there are only ready terminating endpoints
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	IfOperStatusTesting        = 3
    	IfOperStatusUnknown        = 4
    	IfOperStatusDormant        = 5
    	IfOperStatusNotPresent     = 6
    	IfOperStatusLowerLayerDown = 7
    )
    
    // Console related constants used for the mode parameter to SetConsoleMode. See
    // https://docs.microsoft.com/en-us/windows/console/setconsolemode for details.
    
    const (
    	ENABLE_PROCESSED_INPUT        = 0x1
    	ENABLE_LINE_INPUT             = 0x2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/CallTest.kt

        assertThat(server.takeRequest().sequenceNumber).isEqualTo(1)
        assertThat(server.takeRequest().sequenceNumber).isEqualTo(2)
      }
    
      /**
       * Each OkHttpClient used to get its own instance of NullProxySelector, and because these weren't
       * equal their connections weren't pooled. That's a nasty performance bug!
       *
       * https://github.com/square/okhttp/issues/5519
       */
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  4. pkg/registry/batch/job/strategy_test.go

    					},
    				},
    			},
    			update: func(job *batch.Job) {
    				job.Annotations["hello"] = "world"
    			},
    		},
    		"old job is using FailIndex JobBackoffLimitPerIndex is disabled, but FailIndex was already used": {
    			enableJobPodFailurePolicy:     true,
    			enableJobBackoffLimitPerIndex: false,
    			job: &batch.Job{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:            "myjob",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  5. src/debug/elf/elf.go

    	DT_RELSZ        DynTag = 18 /* Total size of ElfNN_Rel relocations. */
    	DT_RELENT       DynTag = 19 /* Size of each ElfNN_Rel relocation. */
    	DT_PLTREL       DynTag = 20 /* Type of relocation used for PLT. */
    	DT_DEBUG        DynTag = 21 /* Reserved (not used). */
    	DT_TEXTREL      DynTag = 22 /* Indicates there may be relocations in non-writable segments. [sup] */
    	DT_JMPREL       DynTag = 23 /* Address of PLT relocations. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  6. pkg/apis/admissionregistration/validation/validation_test.go

    	}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let summary = "Sinks constants implicitly captured in a tf_device.cluster region.";
    
      let description = [{
        This pass sinks implicitly captured constants (`tf.Const` ops) used by and into
        a `tf_device.cluster` region. Performing this prior to outlining will reduce the
        number of arguments of the outlined function.
    
        For example, the following:
    
        ```mlir
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

          if (auto resize = llvm::dyn_cast<TensorListResizeOp>(use.getOwner())) {
            add_to_worklist(resize.getOutputHandle());
            continue;
          }
          // WhileRegionOp can explicitly capture TensorList value to be used inside
          // its regions. So we check the uses of corresponding block argument in
          // each region and the use of TensorList returned using YieldOp.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

    // and filter are per-tensor quantized.
    double GetBiasScale(const double input_scale, const double filter_scale) {
      return filter_scale * input_scale;
    }
    
    // Returns the optionally broadcasted bias constant op used for a given op.
    // If no such constant op exists, returns a nullptr.
    Operation* GetBiasConstOp(Operation* op) {
      Operation* bias_const_op;
      if (Operation* broadcast_in_dim_op =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation_test.go

    					Completions:    pointer.Int32(2),
    					Parallelism:    pointer.Int32(100000),
    				},
    			},
    		},
    		"valid parallelism and maxFailedIndexes for high completions when backoffLimitPerIndex is used": {
    			job: batch.Job{
    				ObjectMeta: validJobObjectMeta,
    				Spec: batch.JobSpec{
    					Completions:          pointer.Int32(100_000),
    					Parallelism:          pointer.Int32(100_000),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
Back to top