Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 68 for Store2 (0.2 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

          continue;
        }
        exceptions[arg] = operand_idx++;
      }
      // Recall those inputs to the concat op that are not produced by a binary op
      // of the `first_arg_op` kind (e.g. tf.Mul) are stored in `exceptions`. If
      // there are too many exceptions, it might not be cost effective to apply the
      // concat hoisting optimization here.
      // Setting the threshold to be 50% as a simple cost model heuristic. e.g. If 1
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    	}
    
    	pod, ok := kl.GetPodByName(namespace, name)
    	if !ok {
    		return fmt.Errorf("pod %q cannot be found - no logs available", name)
    	}
    
    	// TODO: this should be using the podWorker's pod store as authoritative, since
    	// the mirrorPod might still exist, the pod may have been force deleted but
    	// is still terminating (users should be able to view logs of force deleted static pods
    	// based on full name).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            // we are storing it here despite its relationship to Configuration Cache logic.
            // The full prohibited hierarchy is stored because there is no efficient way to check the class hierarchy via `org.objectweb.asm.Type`.
            private static final Set<Type> DISALLOWED_AT_EXECUTION_INJECTED_SERVICES_TYPES = ImmutableSet.of(
                getType(Project.class),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  4. fastapi/applications.py

                    """
                ),
            ] = True,
            **extra: Annotated[
                Any,
                Doc(
                    """
                    Extra keyword arguments to be stored in the app, not used by FastAPI
                    anywhere.
                    """
                ),
            ],
        ) -> None:
            self.debug = debug
            self.title = title
            self.summary = summary
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    		t.Fatalf("Unexpected error when syncing jobs %v", err)
    	}
    	actual, err := manager.jobLister.Jobs(job.Namespace).Get(job.Name)
    	if err != nil {
    		t.Fatalf("Unexpected error when trying to get job from the store: %v", err)
    	}
    	// Verify that after syncing a complete job, the conditions are the same.
    	if got, expected := len(actual.Status.Conditions), 1; got != expected {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	// See golang.org/issue/22220.
    	// We still call updateBuildID to update a.buildID, which is important
    	// for test result caching, but passing rewrite=false (final arg)
    	// means we don't actually rewrite the binary, nor store the
    	// result into the cache. That's probably a net win:
    	// less cache space wasted on large binaries we are not likely to
    	// need again. (On the other hand it does make repeated go test slower.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        std::vector<float> scales = {static_cast<float>(qtype.getScale())};
        std::vector<int64_t> zero_points = {qtype.getZeroPoint()};
        q_params = tflite::CreateQuantizationParameters(
            // min and max values are not stored in the quantized type from MLIR, so
            // both are set to 0 in the flatbuffer when they are exported.
            builder_, /*min=*/0, /*max=*/0, builder_.CreateVector<float>(scales),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      // considered dynamic so use -1 here if k is not a constant value.
      int const_k = -1;
      ElementsAttr cst;
      if (matchPattern(k, m_Constant(&cst)))
        // These casts should all be valid due to how Tensor constants are stored.
        // TODO(jpienaar): This should use a helper function.
        const_k = cst.getValues<IntegerAttr>()[0].getValue().getSExtValue();
    
      auto val_type = input.getType().cast<TensorType>();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    	vexLZ  = 0 << 2
    	vexLIG = 0 << 2
    	vex128 = 0 << 2
    	vex256 = 1 << 2
    	// W field - 1 bit
    	vexWIG = 0 << 7
    	vexW0  = 0 << 7
    	vexW1  = 1 << 7
    	// M field - 5 bits, but mostly reserved; we can store up to 3
    	vex0F   = 1 << 3
    	vex0F38 = 2 << 3
    	vex0F3A = 3 << 3
    )
    
    var ycover [Ymax * Ymax]uint8
    
    var reg [MAXREG]int
    
    var regrex [MAXREG + 1]int
    
    var ynone = []ytab{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ClosingFuture.java

      /**
       * Marks this step as the last step in the {@code ClosingFuture} pipeline. When this step is done,
       * {@code receiver} will be called with an object that contains the result of the operation. The
       * receiver can store the {@link ValueAndCloser} outside the receiver for later synchronous use.
       *
       * <p>After calling this method, you may not call {@link #finishToFuture()}, this method again, or
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
Back to top