Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,250 for going (0.04 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/HasConvention.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal;
    
    /**
     * Demarcates objects that expose a convention.
     *
     * Convention objects aren't going to be around forever, so this is a temporary interface.
     *
     * @deprecated Use extensions instead. This interface is scheduled for removal in Gradle 9.
     * @see org.gradle.api.plugins.ExtensionAware
     */
    @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_capability_conflict.adoc

    It's illegal to find two components providing the same _capability_ in a single dependency graph.
    Intuitively, it means that if Gradle finds two components that provide the same thing on classpath, it's going to fail with an error indicating what modules are in conflict.
    In our example, it means that different bindings of a logging framework provide the same capability.
    
    == Capability coordinates
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. src/runtime/testdata/testwinsignal/main.go

    	ok, _, err := postMessage.Call(hwnd, _WM_CLOSE, 0, 0)
    	if ok == 0 {
    		log.Fatal("post message failed: ", err)
    	}
    
    	sig := <-c
    
    	// Allow some time for the handler to complete if it's going to.
    	//
    	// (In https://go.dev/issue/41884 the handler returned immediately,
    	// which caused Windows to terminate the program before the goroutine
    	// that received the SIGTERM had a chance to actually clean up.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 07:37:53 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/InvalidatableSet.java

      public int hashCode() {
        return delegate.hashCode();
      }
    
      private void validate() {
        // Don't use checkState(), because we don't want the overhead of generating the error message
        // unless it's actually going to be used; validate() is called for all set method calls, so it
        // needs to be fast.
        // (We could instead generate the message once, when the set is created, but zero is better.)
        if (!validator.get()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. guava/src/com/google/common/escape/Platform.java

      }
    
      /**
       * A thread-local destination buffer to keep us from creating new buffers. The starting size is
       * 1024 characters. If we grow past this we don't put it back in the threadlocal, we just keep
       * going and grow as needed.
       */
      private static final ThreadLocal<char[]> DEST_TL =
          new ThreadLocal<char[]>() {
            @Override
            protected char[] initialValue() {
              return new char[1024];
            }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/cc/report.cc

        result.mutable_method()->mutable_no_quantization();
        return result;
      } else {
        return std::nullopt;
      }
    }
    
    // Populates quantized ops from `module_op` to `results`. After going through
    // the quantization passes, quantized ops are represented as `func::CallOp` with
    // a callee's prefix of `quantized_`.
    void PopulateQuantizedResults(ModuleOp module_op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/composite-builds/declared-substitution/README.adoc

    When this build is included in a composite, it will attempt to substitute for the dependency module `undefined:unpublished` ('undefined' is the default value for `project.group`, and 'unpublished' is the root project name). Clearly this isn't going to be very useful in a composite build.
    
    In order to use the `unpublished` library as-is in a composite build, the composing build can explicitly declare the substitutions that it provides.
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/SignatureAwareCallInterceptor.java

     */
    
    package org.gradle.internal.classpath.intercept;
    
    import org.gradle.api.NonNullApi;
    
    import javax.annotation.Nullable;
    
    /**
     * A call interceptor that can also tell if it is going to intercept a call to a method based on the argument types, not the specific argument values.
     */
    @NonNullApi
    public interface SignatureAwareCallInterceptor {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:57 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testcarchive/testdata/libgo2/libgo2.go

    	}
    	close(fds[1]);
    }
    */
    import "C"
    
    import (
    	"fmt"
    	"os"
    	"runtime"
    )
    
    // RunGoroutines starts some goroutines that don't do anything.
    // The idea is to get some threads going, so that a signal will be delivered
    // to a thread started by Go.
    //
    //export RunGoroutines
    func RunGoroutines() {
    	for i := 0; i < 4; i++ {
    		go func() {
    			runtime.LockOSThread()
    			select {}
    		}()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. test/fixedbugs/issue4909b.go

    // errorcheckoutput
    
    package main
    
    import "fmt"
    
    // We are going to define 256 types T(n),
    // such that T(n) embeds T(2n) and *T(2n+1).
    
    func main() {
    	fmt.Printf("// errorcheck\n\n")
    	fmt.Printf("package p\n\n")
    	fmt.Println(`import "unsafe"`)
    
    	// Dump types.
    	for n := 1; n < 256; n++ {
    		writeStruct(n)
    	}
    	// Dump leaves
    	for n := 256; n < 512; n++ {
    		fmt.Printf("type T%d int\n", n)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 19 06:26:35 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top