Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 94 for updatePod (0.45 sec)

  1. tensorflow/compiler/mlir/lite/transforms/optimize.cc

            /*weights_format=*/rewriter.getStringAttr("DEFAULT"),
            /*keep_num_dims=*/rewriter.getBoolAttr(true),
            /*asymmetric_quantize_inputs=*/fc_op.getAsymmetricQuantizeInputsAttr());
    
        // Create the updated FC.
        auto new_fc = rewriter.create<TFL::FullyConnectedOp>(
            FusedLoc::get(add_op.getContext(), {add_op.getLoc(), fc_op.getLoc()}),
            fc_op.getOutput().getTypes(),
            /*input=*/add_op.getLhs(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Display Order */
        public static final String LABELS_SORT_ORDER = "{labels.sortOrder}";
    
        /** The key of the message: Updated by */
        public static final String LABELS_UPDATED_BY = "{labels.updatedBy}";
    
        /** The key of the message: Updated Time */
        public static final String LABELS_UPDATED_TIME = "{labels.updatedTime}";
    
        /** The key of the message: URLs */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	// allglen and allgptr are atomic variables that contain len(allgs) and
    	// &allgs[0] respectively. Proper ordering depends on totally-ordered
    	// loads and stores. Writes are protected by allglock.
    	//
    	// allgptr is updated before allglen. Readers should read allglen
    	// before allgptr to ensure that allglen is always <= len(allgptr). New
    	// Gs appended during the race can be missed. For a consistent view of
    	// all Gs, allglock must be held.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. pkg/printers/internalversion/printers_test.go

    	}{
    		// Test generate daemon set with no generate options.
    		{
    			daemonSet: testDaemonSet,
    			options:   printers.GenerateOptions{},
    			// Columns: Name, Num Desired, Num Current, Num Ready, Num Updated, Num Available, Selectors, Age
    			expected: []metav1.TableRow{{Cells: []interface{}{"test1", int64(3), int64(2), int64(1), int64(2), int64(0), "<none>", "0s"}}},
    		},
    		// Test generate daemon set with "Wide" generate options.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/LocalCache.java

      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
       * Number of cache access operations that can be buffered per segment before the cache's recency
       * ordering information is updated. This is used to avoid lock contention by recording a memento
       * of reads and delaying a lock acquisition until the threshold is crossed or a mutation occurs.
       *
       * <p>This must be a (2^n)-1 as it is used as a mask.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/cache/LocalCache.java

      static final int CONTAINS_VALUE_RETRIES = 3;
    
      /**
       * Number of cache access operations that can be buffered per segment before the cache's recency
       * ordering information is updated. This is used to avoid lock contention by recording a memento
       * of reads and delaying a lock acquisition until the threshold is crossed or a mutation occurs.
       *
       * <p>This must be a (2^n)-1 as it is used as a mask.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    		// There's too much unsafe.Pointer code
    		// that vet doesn't like in low-level packages
    		// like runtime, sync, and reflect.
    		// Note that $GOROOT/src/buildall.bash
    		// does the same
    		// and should be updated if these flags are
    		// changed here.
    		vetFlags = []string{"-unsafeptr=false"}
    
    		// Also turn off -unreachable checks during go test.
    		// During testing it is very common to make changes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. pkg/controller/podautoscaler/horizontal_test.go

    	tc.Lock()
    	defer tc.Unlock()
    
    	assert.Equal(t, tc.specReplicas != tc.expectedDesiredReplicas, tc.scaleUpdated, "the scale should only be updated if we expected a change in replicas")
    	assert.True(t, tc.statusUpdated, "the status should have been updated")
    	if tc.verifyEvents {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

        } else if (is_transpose_conv) {
          // TODO: b/326332748 - For forward convolution in transpose_conv,
          // IsSamePadding calculation may need to be updated.
          // Reference: https://arxiv.org/pdf/1603.07285.pdf
          // Section 4.6 > Relationship 13 states `stride_dim = dilation + 1`.
          rewriter.replaceOpWithNewOp<TFL::TransposeConvOp>(
    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. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          *graph_, &ordered_nodes_,
          [](const Node* n1, const Node* n2) { return n1->name() < n2->name(); });
    
      VLOG(1) << "Inferring graph shapes to fixpoint";
    
      // The "changed" information from UpdateNode can give false positives, so we
      // create a dedicated method to verify the shapes are not changed before and
      // after the shape refine.
      auto same_inferred_shape = [](shape_inference::InferenceContext* c,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
Back to top