Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,746 for preset (0.11 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/logging/GroupedNodeFixture.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.1K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    - `dependencies`: optional. When missing the variant is assumed to have no dependencies. Must not be present when `available-at` is present.
    - `files`: optional. When missing the variant is assumed to have no files. Must not be present when `available-at` is present.
    - `capabilities`: optional. When missing, the variant is assumed to declare no specific capability.
    
    ### `attributes` value
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. 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)
Back to top