Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,174 for tuning (0.09 sec)

  1. platforms/documentation/docs/src/snippets/buildlifecycle/basic/tests/buildlifecycle.out

    This is executed during the initialization phase.
    
    > Configure project :
    This is executed during the configuration phase.
    This is executed during the configuration phase as well, because :testBoth is used in the build.
    
    > Task :test
    This is executed during the execution phase.
    
    > Task :testBoth
    This is executed first during the execution phase.
    This is executed last during the execution phase.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 452 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/buildlifecycle/basic/groovy/build.gradle

    println 'This is executed during the configuration phase.'
    
    tasks.register('configured') {
        println 'This is also executed during the configuration phase, because :configured is used in the build.'
    }
    
    tasks.register('test') {
        doLast {
            println 'This is executed during the execution phase.'
        }
    }
    
    tasks.register('testBoth') {
    	doFirst {
    	  println 'This is executed first during the execution phase.'
    	}
    	doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 607 bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta1/generated.proto

      // 130% of desired pods. Once old pods have been killed,
      // new ReplicaSet can be scaled up further, ensuring that total number of pods running
      // at any time during the update is at most 130% of desired pods.
      // +optional
      optional .k8s.io.apimachinery.pkg.util.intstr.IntOrString maxSurge = 2;
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. src/internal/trace/summary.go

    	StartTime    Time   // Timestamp of the first time it started running. 0 if the goroutine never ran.
    	EndTime      Time   // Timestamp of when the goroutine exited. 0 if the goroutine never exited.
    
    	// List of regions in the goroutine, sorted based on the start time.
    	Regions []*UserRegionSummary
    
    	// Statistics of execution time during the goroutine execution.
    	GoroutineExecStats
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

        }
    
        /**
         * Indicates whether the tests should be grouped by instances. Grouping by instances will result in resolving test method dependencies for each instance instead of running the dependees of all
         * instances before running the dependants.
         *
         * Not required.
         *
         * If not present, the tests will not be grouped by instances.
         */
        @Internal
        public boolean isGroupByInstances() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Strings.java

       *
       * <p>In certain cases, such as outputting debugging information or constructing a message to be
       * used for another unchecked exception, an exception during string formatting would serve little
       * purpose except to supplant the real information you were trying to provide. These are the cases
       * this method is made for; it instead generates a best-effort string with all supplied argument
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 09 00:49:18 UTC 2021
    - 12.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tf_tfl_passes.cc

            mlir::TFL::CreatePostQuantizePass(emit_quant_adaptor_ops));
      }
      pass_manager.addNestedPass<mlir::func::FuncOp>(
          mlir::TFL::CreateOptimizeOpOrderPass());
      // Add optimization pass after quantization for additional fusing
      // opportunities.
    
      if (!pass_config.unfold_batch_matmul) {
        // Enable an optimization pass that transforms FC to BatchMatmul only when
        // `unfold_batch_matmul=false`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 18:45:51 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_regexps.txt

    	})
    }
    -- z_test.go --
    package x
    
    import "testing"
    
    func TestZ(t *testing.T) {
    	t.Logf("LOG: Z running")
    }
    
    func TestXX(t *testing.T) {
    	t.Logf("LOG: XX running")
    }
    
    func BenchmarkZ(b *testing.B) {
    	b.Logf("LOG: Z running N=%d", b.N)
    }
    
    func BenchmarkXX(b *testing.B) {
    	b.Logf("LOG: XX running N=%d", b.N)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  9. src/runtime/time.go

    	// already in progress during Steps 1+2 completed and was observed by Step 3.
    	// All that locking was too expensive, so now we do an atomic load of t.astate to
    	// decide whether we need to do a full lock. To make sure that we still observe any
    	// timer update already in progress during Steps 1+2, t.modify sets timerModified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 14:36:24 UTC 2024
    - 37.5K bytes
    - Viewed (0)
  10. src/cmd/dist/main.go

    		// Solaris and illumos systems have multi-arch userlands, and
    		// "uname -m" reports the machine hardware name; e.g.,
    		// "i86pc" on both 32- and 64-bit x86 systems.  Check for the
    		// native (widest) instruction set on the running kernel:
    		out := run("", CheckExit, "isainfo", "-n")
    		if strings.Contains(out, "amd64") {
    			gohostarch = "amd64"
    		}
    		if strings.Contains(out, "i386") {
    			gohostarch = "386"
    		}
    	case "windows":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 22 19:44:52 UTC 2023
    - 5.5K bytes
    - Viewed (0)
Back to top