Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 113 for initAt (0.39 sec)

  1. platforms/documentation/docs/src/snippets/buildCache/configure-by-init-script/tests-groovy/configure-by-init-script.groovy.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 55 bytes
    - Viewed (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild.update-init-template-versions.gradle.kts

    import gradlebuild.buildutils.tasks.UpdateInitPluginTemplateVersionFile
    
    tasks {
        register<UpdateInitPluginTemplateVersionFile>("updateInitPluginTemplateVersionFile") {
            group = "Build init"
            libraryVersionFile = layout.projectDirectory.file(
                "src/main/resources/org/gradle/buildinit/tasks/templates/library-versions.properties"
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 20 15:24:40 UTC 2023
    - 378 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/buildCache/configure-by-init-script/tests-kotlin/configure-by-init-script.kotlin.sample.conf

    executable: gradle
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 59 bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/device_compiler_test.cc

      TF_EXPECT_OK(NodeDefBuilder("identity_op", "Identity")
                       .Input(FakeInput(DT_FLOAT))
                       .Attr("T", DT_FLOAT)
                       .Finalize(node_def()));
      TF_EXPECT_OK(InitOp());
      AddInputFromArray<float>(TensorShape({1, 2}), {6.9, 4.2});
      TF_EXPECT_OK(RunOpKernel());
    
      auto xla_device_compiler = CreateXlaDeviceCompiler();
      core::ScopedUnref xla_device_compiler_ref(xla_device_compiler);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/vhlo.mlir

    //CHECK-NEXT:    }) : (tensor<448xf32>, tensor<448xi32>) -> (tensor<448xf32>, tensor<448xi32>) 
    //CHECK-NEXT: return %0#0 : tensor<448xf32>
    //CHECK-NEXT:}
    
    func.func @while(%init_i: tensor<i64>, %init_sum: tensor<i64>) -> tensor<i64>{
      %0, %1 = "vhlo.while_v1"(%init_i, %init_sum) ({
        ^bb0(%arg0: tensor<i64>, %arg1: tensor<i64>):
          %cond = "vhlo.compare_v1"(%arg0, %arg1) {
            comparison_direction = #vhlo<comparison_direction_v1 LT>,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 14 19:15:40 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  6. cluster/common.sh

        # shellcheck disable=SC2154
        echo "${ca_key}" | base64 --decode > ca-key.pem
      fi
    
      if [[ ! -r "ca.pem" || ! -r "ca-key.pem" ]]; then
        ${CFSSL_BIN} gencert -initca ca-csr.json | ${CFSSLJSON_BIN} -bare ca -
      fi
    
      case "${type_cert}" in
        client)
          echo "Generate client certificates..."
          echo '{"CN":"client","hosts":["*"],"key":{"algo":"ecdsa","size":256}}' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    	sync := make(chan struct{})
    	// Polls indefinitely in an attempt to initialize the distributed claims
    	// verifier, or until context canceled.
    	initFn := func(ctx context.Context) (done bool, err error) {
    		klog.V(4).Infof("oidc authenticator: attempting init: iss=%v", iss)
    		v, err := initVerifier(ctx, c, iss, audiences)
    		if err != nil {
    			klog.Errorf("oidc authenticator: async token verifier for issuer: %q: %v", iss, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  8. tensorflow/c/kernels_test.cc

        OpsTestBase::SetDevice(DEVICE_GPU, std::move(device));
    #endif
        TF_ASSERT_OK(NodeDefBuilder(op_name, op_name).Finalize(node_def()));
        TF_ASSERT_OK(InitOp());
      }
    
    #if GOOGLE_CUDA || TENSORFLOW_USE_ROCM
      const char* device_name_ = tensorflow::DEVICE_GPU;
    #else
      const char* device_name_ = tensorflow::DEVICE_CPU;
    #endif
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 50.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          inst->emitOpError("is not a supported TFLite op");
          return std::nullopt;
        }
    
        if (*builtin_code == tflite::BuiltinOperator_CALL_ONCE) {
          if (auto initOp = dyn_cast<mlir::TFL::CallOnceOp>(inst)) {
            return BuildCallOnceOperator(initOp, operands, results);
          }
        }
    
        std::string op_name = inst->getName().getStringRef().str();
        uint32_t opcode_index = GetOpcodeIndex(op_name, *builtin_code);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    		t.Errorf("timeout after %v", wait.ForeverTestTimeout)
    	}
    }
    
    func RunTestWatcherTimeout(ctx context.Context, t *testing.T, store storage.Interface) {
    	// initialRV is used to initate the watcher at the beginning of the world.
    	podList := example.PodList{}
    	options := storage.ListOptions{
    		Predicate: storage.Everything,
    		Recursive: true,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top