Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 442 for getMain (0.15 sec)

  1. LICENSE

              Derivative Works a copy of this License; and
    
          (b) You must cause any modified files to carry prominent notices
              stating that You changed the files; and
    
          (c) You must retain, in the Source form of any Derivative Works
              that You distribute, all copyright, patent, trademark, and
              attribution notices from the Source form of the Work,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/cache/ModelSchemaCache.java

     * <p>
     * Significant complexity is introduced by facilitating a volatile classloader environment.
     * That is, classes being loaded and unloaded for the life of this cache.
     * This requires ModelSchema objects to not retain strong class references (which they don't due to use of ModelType)
     * and for strong class references not to be held for the cache keys.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestLoggingContainer.java

         */
        void lifecycle(Action<TestLogging> action);
    
        /**
         * Gets logging options for warn level.
         *
         * @return logging options for warn level
         */
        TestLogging getWarn();
    
        /**
         * Sets logging options for warn level.
         *
         * @param logging logging options for warn level
         */
        void setWarn(TestLogging logging);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1beta1/types.go

    	// The number of successful finished jobs to retain.
    	// This is a pointer to distinguish between explicit zero and not specified.
    	// Defaults to 3.
    	// +optional
    	SuccessfulJobsHistoryLimit *int32 `json:"successfulJobsHistoryLimit,omitempty" protobuf:"varint,6,opt,name=successfulJobsHistoryLimit"`
    
    	// The number of failed finished jobs to retain.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 11:58:57 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  5. src/os/removeall_noat.go

    // license that can be found in the LICENSE file.
    
    //go:build !unix
    
    package os
    
    import (
    	"io"
    	"runtime"
    	"syscall"
    )
    
    func removeAll(path string) error {
    	if path == "" {
    		// fail silently to retain compatibility with previous behavior
    		// of RemoveAll. See issue 28830.
    		return nil
    	}
    
    	// The rmdir system call permits removing "." on Plan 9,
    	// so we don't permit it to remain consistent with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/DataSeries.java

        }
    
        public Amount<Q> getAverage() {
            return average;
        }
    
        public Amount<Q> getMedian() {
            return median;
        }
    
        public Amount<Q> getMin() {
            return min;
        }
    
        public Amount<Q> getMax() {
            return max;
        }
    
        public Amount<Q> getStandardError() {
            return standardError;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/manage/schema/extract/ModelSchemaUtilsTest.groovy

            @Incubating
            Object doSomething() { null }
        }
    
        class Child extends Base implements Serializable {
            @Nullable
            Object doSomething() { null }
        }
    
        def "overridden methods retain annotations"() {
            when:
            def methods = ModelSchemaUtils.getCandidateMethods(Child)
    
            then:
            methods.methodNames() == (["doSomething"] as Set)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

                                    &result, &pjrt_executable));
        // Hold the reference to the XLA device compiler and profiler during
        // evaluation. (We could probably free them sooner because the ResourceMgr
        // will retain references, but this is more obviously correct.)
        core::ScopedUnref pjrt_device_compiler_ref(pjrt_device_compiler);
        core::ScopedUnref profiler_ref(profiler);
    
        VLOG(2) << "Compiled op with PJRT: " << ctx->status();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_list_std.txt

    # directories.
    
    go list -f '{{.Dir}}' golang.org/x/net/http2/hpack
    stdout $GOROOT[/\\]src[/\\]vendor
    
    # Within the std module, the packages within the module should omit the 'std/'
    # prefix (they retain their own identities), but should respect normal module
    # boundaries (vendored packages are not included in the module, even though they
    # are included in the 'std' pattern).
    
    go list ./...
    stdout ^bytes$
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 28 18:50:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http/RealInterceptorChain.kt

        check(index < interceptors.size)
    
        calls++
    
        if (exchange != null) {
          check(exchange.finder.routePlanner.sameHostAndPort(request.url)) {
            "network interceptor ${interceptors[index - 1]} must retain the same host and port"
          }
          check(calls == 1) {
            "network interceptor ${interceptors[index - 1]} must call proceed() exactly once"
          }
        }
    
        // Call the next interceptor in the chain.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top