Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 500 for preset (0.27 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/plugins/jvm/internal/JvmFeatureInternal.java

        /**
         * Gets the dependency configuration for which to declare runtime-only dependencies.
         * Dependencies declared on this configuration are present only during runtime, are not
         * present during compilation, and are not exposed as part of the feature's API variant.
         *
         * @return The {@code runtimeOnly} configuration.
         */
        Configuration getRuntimeOnlyConfiguration();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/cache/internal/CacheVersionMappingTest.groovy

                .changedTo(5, "2.0.1")
                .build()
    
            then:
            !mapping.getVersionUsedBy(version("0.9.9")).present
            !mapping.getVersionUsedBy(version("1.0-rc-1")).present
            !mapping.getVersionUsedBy(version("1.0-milestone-2")).present
            mapping.getVersionUsedBy(version("1.0-rc-2")).get() == CacheVersion.of(1)
            mapping.getVersionUsedBy(version("1.0-rc-3")).get() == CacheVersion.of(1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:40:24 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/FileBackedOutputStream.java

      }
    
      /**
       * Creates a new instance that uses the given file threshold, and optionally resets the data when
       * the {@link ByteSource} returned by {@link #asByteSource} is finalized.
       *
       * @param fileThreshold the number of bytes before the stream should switch to buffering to a file
       * @param resetOnFinalize if true, the {@link #reset} method will be called when the {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/gradients/nn_grad_test.cc

          status_ =
              BuildImmediateExecutionContext(std::get<1>(GetParam()), &ctx_raw);
          ASSERT_EQ(errors::OK, status_.code()) << status_.message();
          immediate_execution_ctx_.reset(ctx_raw);
        }
    
        // Computing numerical gradients with TensorFloat-32 is numerically
        // unstable. Some forward pass tests also fail with TensorFloat-32 due to
        // low tolerances
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 28 13:53:47 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. docs/en/docs/how-to/configure-swagger-ui.md

    ## JavaScript-only settings
    
    Swagger UI also allows other configurations to be **JavaScript-only** objects (for example, JavaScript functions).
    
    FastAPI also includes these JavaScript-only `presets` settings:
    
    ```JavaScript
    presets: [
        SwaggerUIBundle.presets.apis,
        SwaggerUIBundle.SwaggerUIStandalonePreset
    ]
    ```
    
    These are **JavaScript** objects, not strings, so you can't pass them from Python code directly.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. src/runtime/tracestring.go

    	w.stringData(s)
    
    	// Store back buf in case it was updated during ensure.
    	t.buf = w.traceBuf
    	unlock(&t.lock)
    }
    
    // reset clears the string table and flushes any buffers it has.
    //
    // Must be called only once the caller is certain nothing else will be
    // added to this table.
    func (t *traceStringTable) reset(gen uintptr) {
    	if t.buf != nil {
    		systemstack(func() {
    			lock(&trace.lock)
    			traceBufFlush(t.buf, gen)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedWorkOutputFixture.java

            }
        }
    
        /**
         * Given expected text checks if the sequence of lines is present and uninterrupted in the actual fixture output.
         * <p>
         * Will throw an exception given sequences where some (but not all) of the lines are present in the exception, if
         * the entire expected input is not present.
         *
         * @param expectedText the expected sequence of lines
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/authenticationconfig/metrics/metrics_test.go

    	`
    	metrics := []string{
    		namespace + "_" + subsystem + "_automatic_reloads_total",
    	}
    
    	authenticationConfigAutomaticReloadsTotal.Reset()
    	RegisterMetrics()
    
    	RecordAuthenticationConfigAutomaticReloadFailure(testAPIServerID)
    	if err := testutil.GatherAndCompare(legacyregistry.DefaultGatherer, strings.NewReader(expectedValue), metrics...); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. platforms/core-runtime/daemon-services/src/main/java/org/gradle/api/internal/tasks/userinput/UserQuestions.java

         * allowing the user to type 'y' or 'n' or presenting a checkbox. The user is not required to answer 'true' or 'false'
         *
         * @param question The text of the question.
         * @param defaultValue The option to present to the user as the default choice, and the value to use when not connected to a console
         * @return the answer or the given default if not connected to a console.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/time/tick.go

    	stopTimer((*Timer)(unsafe.Pointer(t)))
    }
    
    // Reset stops a ticker and resets its period to the specified duration.
    // The next tick will arrive after the new period elapses. The duration d
    // must be greater than zero; if not, Reset will panic.
    func (t *Ticker) Reset(d Duration) {
    	if d <= 0 {
    		panic("non-positive interval for Ticker.Reset")
    	}
    	if !t.initTicker {
    		panic("time: Reset called on uninitialized Ticker")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top