Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 748 for experts (0.27 sec)

  1. platforms/documentation/docs/src/snippets/testing/patch-module/groovy/src/test/java/module-info.java

    open module org.gradle.sample {
        exports org.gradle.sample;
        requires org.junit.jupiter.api;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 101 bytes
    - Viewed (0)
  2. src/runtime/sys_openbsd_amd64.s

    	MOVL	(AX), AX		// errno
    	NEGL	AX			// caller expects negative errno value
    noerr:
    	RET
    
    TEXT runtime·write_trampoline(SB),NOSPLIT,$0
    	MOVQ	8(DI), SI		// arg 2 buf
    	MOVL	16(DI), DX		// arg 3 count
    	MOVL	0(DI), DI		// arg 1 fd
    	CALL	libc_write(SB)
    	TESTL	AX, AX
    	JGE	noerr
    	CALL	libc_errno(SB)
    	MOVL	(AX), AX		// errno
    	NEGL	AX			// caller expects negative errno value
    noerr:
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  3. cmd/signature-v2.go

    		canonicalHeaders += "\n"
    	}
    
    	date := expires // Date is set to expires date for presign operations.
    	if date == "" {
    		// If expires date is empty then request header Date is used.
    		date = headers.Get(xhttp.Date)
    	}
    
    	// From the Amazon docs:
    	//
    	// StringToSign = HTTP-Verb + "\n" +
    	// 	 Content-Md5 + "\n" +
    	//	 Content-Type + "\n" +
    	//	 Date/Expires + "\n" +
    	//	 CanonicalizedProtocolHeaders +
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/java/modules-multi-project/README.adoc

    These correspond to the `implementation` and `api` dependencies defined in the Gradle build file.
    In addition, a module `exports` packages that should be visible to consumers.
    Other packages are not visible outside of the module.
    
    ```
    module org.gradle.sample.utilities {
        requires transitive org.gradle.sample.list;
        exports org.gradle.sample.utilities;
    }
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. releasenotes/notes/44506.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: istioctl
    issue:
      - 40861
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 27 03:04:29 UTC 2023
    - 195 bytes
    - Viewed (0)
  6. tests/integration/operator/install_test.go

    					errString: "",
    				},
    			}
    			for _, test := range testCases {
    				_, actualError, _ := istioCtl.Invoke(test.command)
    				if !strings.Contains(actualError, test.errString) {
    					t.Errorf("istioctl install command expects to fail with error message: %s, but got: %s", test.errString, actualError)
    				}
    			}
    		})
    }
    
    func TestReInstallAfterFailure(t *testing.T) {
    	framework.NewTest(t).
    		Run(func(t framework.TestContext) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 14:30:43 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/application/src/main/java/module-info.java

    module org.gradle.sample.app {
        exports org.gradle.sample.app;
        opens org.gradle.sample.app.data; // allow Gson to access via reflection
    
        requires com.google.gson;
        requires org.apache.commons.lang3;
        requires org.apache.commons.cli;
        requires org.apache.commons.beanutils;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 295 bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/resources/META-INF/gradle-plugins/org.gradle.swiftpm-export.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 80 bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/jvm/JpmsConfiguration.java

            "--add-opens=java.prefs/java.util.prefs=ALL-UNNAMED", // required by PreferenceCleaningGroovySystemLoader
            "--add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED", // Required by JdkTools and JdkJavaCompiler
            "--add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED" // Required by JdkTools and JdkJavaCompiler
        ));
    
        public static final List<String> GRADLE_DAEMON_JPMS_ARGS;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. hack/make-rules/test-cmd.sh

        --client-ca-file=hack/testdata/ca/ca.crt \
        --token-auth-file=hack/testdata/auth-tokens.csv 1>&2 &
      export APISERVER_PID=$!
    
      kube::util::wait_for_url_with_bearer_token "https://127.0.0.1:${SECURE_API_PORT}/healthz" "admin-token" "apiserver"
    }
    
    # Runs run_kube_controller_manager
    #
    # Exports:
    #   CTLRMGR_PID
    function run_kube_controller_manager() {
      kube::log::status "Building kube-controller-manager"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 09:10:14 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top