Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 277 for main_main (0.12 sec)

  1. platforms/core-configuration/kotlin-dsl/doc/c4/README.adoc

    NOTE: This diagram diverges from the C4 Model because the scope is the whole Kotlin DSL system instead of having one diagram per container.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 19 00:01:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/util/NameValidator.java

    import org.apache.commons.lang.StringUtils;
    import org.gradle.api.InvalidUserDataException;
    import org.gradle.internal.deprecation.DeprecationLogger;
    
    import java.util.Arrays;
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     *
     * @deprecated Will be removed in Gradle 9.0.
     */
    @Deprecated
    public final class NameValidator {
    
        private static void logDeprecation() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 07 08:48:39 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight.go

    	}
    }
    
    // watermark tracks requests being executed (not waiting in a queue)
    var watermark = &requestWatermark{
    	phase: metrics.ExecutingPhase,
    }
    
    // startWatermarkMaintenance starts the goroutines to observe and maintain the specified watermark.
    func startWatermarkMaintenance(watermark *requestWatermark, stopCh <-chan struct{}) {
    	// Periodically update the inflight usage metric.
    	go wait.Until(func() {
    		watermark.lock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 11:34:15 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/Funnel.java

     *
     * <p>Note that serialization of {@linkplain BloomFilter bloom filters} requires the proper
     * serialization of funnels. When possible, it is recommended that funnels be implemented as a
     * single-element enum to maintain serialization guarantees. See Effective Java (2nd Edition), Item
     * 3: "Enforce the singleton property with a private constructor or an enum type". For example:
     *
     * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  5. src/hash/hash.go

    // which users are expected to handle for any possible security implications.
    //
    // Compatibility: Any future changes to hash or crypto packages will endeavor
    // to maintain compatibility with state encoded using previous versions.
    // That is, any released versions of the packages should be able to
    // decode data written with any previously released version,
    // subject to issues such as security fixes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 19:15:34 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model.h

    // and NumericVerify ops to compare output values from the quantized and float
    // ops.
    //
    // When `legacy_float_scale` is true, the quantizer will use float scale instead
    // of double, and call TOCO's quantization routines to maintain bit-exactness of
    // the values with the TOCO quantizer.
    TfLiteStatus QuantizeModel(
        absl::string_view model_buffer, const tflite::TensorType &input_type,
        const tflite::TensorType &output_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/plugins/TestSuiteModelIntegrationSpec.groovy

                        }
                    }
                }
            '''
    
            when:
            succeeds "printSourceDisplayName"
    
            then:
            output.contains "sources display name: Custom source 'main:main'"
        }
    
        def "can reference sources container elements using specialized type in a rule"() {
            given:
            withMainSourceSet()
            buildFile << '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. src/internal/testenv/testenv_test.go

    	}
    	t.Error("PWD not set in cmd.Env")
    }
    
    func isCorelliumBuilder(builderName string) bool {
    	// Support both the old infra's builder names and the LUCI builder names.
    	// The former's names are ad-hoc so we could maintain this invariant on
    	// the builder side. The latter's names are structured, and "corellium" will
    	// appear as a "host" suffix after the GOOS and GOARCH, which always begin
    	// with an underscore.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 23:12:44 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/database/sql/doc.txt

      truncation or other loss of precision.
    
    * Handle concurrency well.  Users shouldn't need to care about the
      database's per-connection thread safety issues (or lack thereof),
      and shouldn't have to maintain their own free pools of connections.
      The 'sql' package should deal with that bookkeeping as needed.  Given
      an *sql.DB, it should be possible to share that instance between
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 06:48:08 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_address.go

    	LocalhostIPv6Address = "::1"
    
    	// 6 is the magical number for inbound: 15006, 127.0.0.6, ::6
    	InboundPassthroughBindIpv4 = "127.0.0.6"
    	InboundPassthroughBindIpv6 = "::6"
    )
    
    var (
    	// maintain 3 maps to return wildCards, localHosts and passthroughBindIPs according to IP mode of proxy
    	wildCards = map[model.IPMode][]string{
    		model.IPv4: {WildcardAddress},
    		model.IPv6: {WildcardIPv6Address},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top