Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 855 for REAL (0.04 sec)

  1. platforms/documentation/docs/src/snippets/java-library/module-disabled/groovy/src/main/java/module-info.java

    module org.gradle.sample {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java-library/module/groovy/src/main/java/module-info.java

    module org.gradle.sample {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/gotoolchain_net.txt

    env GOSUMDB=$oldsumdb' http://badurl'
    rm $GOPATH/pkg/mod/cache/download/sumdb
    ! go version
    ! stderr downloading
    stderr 'panic: use of network' # test catches network access
    env GOSUMDB=$oldsumdb
    
    # Test a real GOTOOLCHAIN
    [short] skip
    [!net:golang.org] skip
    [!net:sum.golang.org] skip
    [!GOOS:darwin] [!GOOS:windows] [!GOOS:linux] skip
    [!GOARCH:amd64] [!GOARCH:arm64] skip
    
    env GOPROXY=
    [go-builder] env GOSUMDB=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 17:16:47 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java-library/module/kotlin/src/main/java/module-info.java

    module org.gradle.sample.lib {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 212 bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenRealProjectsDependencyResolveIntegrationTest.groovy

            settingsFile << """
                rootProject.name = 'testproject'
            """
        }
    
        @Requires(UnitTestPreconditions.Online)
        def "resolves dependencies on real projects"() {
            // Real but ancient projects
            // Hibernate core brings in conflicts, exclusions and root poms
            // Add a direct dependency on an earlier version of commons-collection than required by hibernate core
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. pkg/bootstrap/config_test.go

    				ProxyConfig: &model.NodeMetaProxyConfig{
    					ClusterName: &v1alpha1.ProxyConfig_ServiceCluster{
    						ServiceCluster: "cluster",
    					},
    				},
    			},
    			Owner: "real-owner",
    		},
    		RawMetadata: map[string]any{},
    	}
    	node.Metadata.Owner = "real-owner"
    	node.RawMetadata["OWNER"] = "fake-owner"
    	node.RawMetadata["UNKNOWN"] = "new-field"
    	node.RawMetadata["A"] = 1
    	node.RawMetadata["B"] = map[string]any{"b": 1}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/java-library/module-disabled/kotlin/src/main/java/module-info.java

    module org.gradle.sample {
        requires com.google.gson;          // real module
        requires org.apache.commons.lang3; // automatic module
        // commons-cli-1.4.jar is not a module and cannot be required
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 208 bytes
    - Viewed (0)
  8. tensorflow/cc/framework/gradient_checker.h

    /// Returns in 'max_error' the maximum element-wise error for dy/dx between the
    /// computed and numeric Jacobian matrices where 'xs' and 'ys' are tensors.
    /// X_T and Y_T are the c++ types for the x and y tensors, and JAC_T is a
    /// real-valued type to store the Jacobian derivatives dy/dx.
    /// This function adds operations to the graph associated with 'scope'.
    ///
    /// Examples:
    /// if y = Square(x), where x (and so y) are DT_FLOAT,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 05 15:35:17 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. hack/tools/go.work

    // This is a hack, but it prevents go from climbing further and trying to
    // reconcile the various deps across the "real" modules and this one.
    
    go 1.22.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 08:22:06 UTC 2024
    - 162 bytes
    - Viewed (0)
  10. internal/handlers/proxy.go

    	xForwardedProto  = http.CanonicalHeaderKey("X-Forwarded-Proto")
    	xForwardedScheme = http.CanonicalHeaderKey("X-Forwarded-Scheme")
    	xRealIP          = http.CanonicalHeaderKey("X-Real-IP")
    )
    
    var (
    	// RFC7239 defines a new "Forwarded: " header designed to replace the
    	// existing use of X-Forwarded-* headers.
    	// e.g. Forwarded: for=192.0.2.60;proto=https;by=203.0.113.43
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Dec 22 00:56:55 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top