Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for unnamed (0.17 sec)

  1. platforms/core-runtime/native/build.gradle.kts

    }
    
    description = "This project contains various native operating system integration utilities"
    
    gradlebuildJava.usedInWorkers()
    
    /**
     * Use Java 8 compatibility for JMH benchmarks
     */
    tasks.named<JavaCompile>("jmhCompileGeneratedClasses") {
        options.release = 8
    }
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":files"))
    
        api(libs.jsr305)
        api(libs.nativePlatform)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

            }
            if (executer == defaultExecuter) {
                // The test task with the default executer runs with 'check'
                tasks.named("check").configure { dependsOn(testTask) }
            }
        }
    }
    
    fun createAggregateTasks(sourceSet: SourceSet) {
        val allVersionsCrossVersionTests = tasks.register("allVersionsCrossVersionTests") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskExecutionIntegrationTest.groovy

                    // This task reaches out to other task at execution time and triggers its configuration.
                    doLast { task ->
                        println(task.project.tasks.named("innocent").get())
                    }
                }
            """)
    
            when:
            configurationCacheRun("offender")
    
            then:
            problems.assertResultHasProblems(result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. RELEASE.md

    Template.`var_scope` property renamed to `.variable_scope` *
    SyncReplicasOptimizer is removed and SyncReplicasOptimizerV2 renamed to
    SyncReplicasOptimizer. * `tf.zeros_initializer()` and `tf.ones_initializer()`
    now return a callable that must be called with initializer arguments, in your
    code replace `tf.zeros_initializer` with `tf.zeros_initializer()`. *
    `SparseTensor.shape` has been renamed to `SparseTensor.dense_shape`. Same for
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

            Object qualifier = key.getQualifier();
            Key k = qualifier != null
                    ? Key.get(key.getType(), qualifier instanceof String s ? Names.named(s) : (Annotation) qualifier)
                    : Key.get(key.getType());
            Provider<T> up = unscoped::get;
            Provider<T> p = scope(k, up);
            return p::get;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_weights_test.cc

          // should stay with type FLOAT32.
          // If the tensor is a bias, it should have type FLOAT32.
          //
          // Check with float_tensor name since quantized tensor
          // may be renamed.
          if (float_tensor->name()->str() == "conv_bias") {
            EXPECT_EQ(quant_tensor->type(), TensorType_FLOAT32);
          } else if (IsModelInputOrOutput(output_model, i)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/istio_ca.go

    //   K8S root.
    
    var (
    	// LocalCertDir replaces the "cert-chain", "signing-cert" and "signing-key" flags in citadel - Istio installer is
    	// requires a secret named "cacerts" with specific files inside.
    	LocalCertDir = env.Register("ROOT_CA_DIR", "./etc/cacerts",
    		"Location of a local or mounted CA root")
    
    	useRemoteCerts = env.Register("USE_REMOTE_CERTS", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. cmd/erasure-healing.go

    						tillOffset, DefaultBitrotAlgorithm, erasure.ShardSize())
    				}
    			}
    
    			// Heal each part. erasure.Heal() will write the healed
    			// part to .minio/tmp/uuid/ which needs to be renamed
    			// later to the final location.
    			err = erasure.Heal(ctx, writers, readers, partSize, prefer)
    			closeBitrotReaders(readers)
    			closeBitrotWriters(writers)
    			if err != nil {
    				return result, err
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

    side of the equation. The right-hand side of the equation consists of the
    output subscript. The input subscripts and the output subscript should consist
    of zero or more named axis labels and at most one ellipsis (`...`).
    
    The named axis labels may be any single character other than those having
    special meaning, namely `,.->`. The behavior of this Op is undefined if it
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  10. src/cmd/go/internal/help/helpdoc.go

    		option. Packages named main are ignored.
    
    	-buildmode=exe
    		Build the listed main packages and everything they import into
    		executables. Packages not named main are ignored.
    
    	-buildmode=pie
    		Build the listed main packages and everything they import into
    		position independent executables (PIE). Packages not named
    		main are ignored.
    
    	-buildmode=plugin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
Back to top