Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 786 for produced (0.12 sec)

  1. pkg/config/mesh/mesh_test.go

    	warn, err := agent.ValidateMeshConfig(mesh.DefaultMeshConfig())
    	if err != nil {
    		t.Errorf("validation of default mesh config failed with %v", err)
    	}
    	if warn != nil {
    		t.Errorf("validation of default mesh config produced warnings: %v", warn)
    	}
    }
    
    func TestApplyMeshConfigDefaults(t *testing.T) {
    	configPath := "/test/config/patch"
    	yaml := fmt.Sprintf(`
    defaultConfig:
      configPath: %s
    `, configPath)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            target.createFile()
            run 'producesLink'
            then:
            executedAndNotSkipped ':producesLink'
        }
    
        @Issue('https://github.com/gradle/gradle/issues/1365')
        def "broken symlink not produced by task is ignored"() {
            given:
            def input = file("input.txt").createFile()
            def outputDirectory = file("output")
    
            def brokenLink = outputDirectory.file('link').createLink("broken")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/debug/gosym/symtab.go

    //
    // In Go 1 and Go 1.1, each package produced one Obj for all Go sources
    // and one Obj per C source file.
    //
    // In Go 1.2, there is a single Obj for the entire program.
    type Obj struct {
    	// Funcs is a list of functions in the Obj.
    	Funcs []Func
    
    	// In Go 1.1 and earlier, Paths is a list of symbols corresponding
    	// to the source file names that produced the Obj.
    	// In Go 1.2, Paths is nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/types_swagger_doc_generated.go

    results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 46.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlay.kt

         */
        sealed interface MergeKey {
            /**
             * Nodes having this key are unique and never get merged with any other nodes.
             * Some examples are: elements produced by adding functions; error nodes.
             */
            data object CannotMerge : MergeKey
    
            /**
             * The key for properties that can get merged by shadowing.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.h

    // Compiles a Graph from TF to HLO and adds the resulting HLO to the
    // XlaBuilder. This function adds HLO to a larger HLO computation, so
    // HLO-level inputs are supplied, and HLO-level outputs are produced.
    // xla_params is the HLO-level inputs and returns is the HLO-level outputs.
    // If unconditionally_use_output_shapes is true then the unregistered
    // attribute _output_shapes is always used to set the output shapes of the ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

      /** The bytes consumed and acknowledged by the stream. */
      val readBytes: WindowCounter = WindowCounter(id)
    
      /** The total number of bytes produced by the application. */
      var writeBytesTotal = 0L
        internal set
    
      /** The total number of bytes permitted to be produced by incoming `WINDOW_UPDATE` frame. */
      var writeBytesMaximum: Long = connection.peerSettings.initialWindowSize.toLong()
        internal set
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

      if (!definingOp)
        return sink.emitOpError() << "expects a token directly produced by a "
                                     "tf_executor.NextIteration.Source op: ";
      auto source = dyn_cast<NextIterationSourceOp>(definingOp);
      if (!source)
        return sink.emitOpError() << "expects a token produced by a "
                                     "tf_executor.NextIteration.Source op: ";
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/InterruptibleTask.java

          currentThread.interrupt();
        }
        /*
         * TODO(cpovirk): Clear interrupt status here? We currently don't, which means that an interrupt
         * before, during, or after runInterruptibly() (unless it produced an InterruptedException
         * caught above) can linger and affect listeners.
         */
      }
    
      /**
       * Called before runInterruptibly - if true, runInterruptibly and afterRanInterruptibly will not
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/plugins/IvyPublishPlugin.java

            repositories.all(repository -> tasks.register(publishAllToSingleRepoTaskName(repository), publish -> {
                publish.setDescription("Publishes all Ivy publications produced by this project to the " + repository.getName() + " repository.");
                publish.setGroup(PublishingPlugin.PUBLISH_TASK_GROUP);
            }));
    
            publications.all(publication -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top