Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 123 for make (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    // TODO figure this out
    Libraries make a distinction between private (implementation details) and public (exported to consumer) headers.
    
    You can also configure sources for each binary build for those cases where sources are compiled only on certain target machines.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_arm.s

    	MOVW	R0, (R1)	// fail hard
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT|NOFRAME,$0-4
    	MOVW	wait+0(FP), R0
    	// We're done using the stack.
    	// Alas, there's no reliable way to make this write atomic
    	// without potentially using the stack. So it goes.
    	MOVW	$0, R1
    	MOVW	R1, (R0)
    	MOVW	$0, R0	// exit code
    	MOVW	$SYS_exit, R7
    	SWI	$0
    	MOVW	$1234, R0
    	MOVW	$1004, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    ----
    $ gradle wrapper
    ----
    ----
    include::{snippetsPath}/wrapper/simple/tests/wrapperCommandLine.out[]
    ----
    
    [TIP]
    ====
    To make the Wrapper files available to other developers and execution environments, you need to check them into version control.
    Wrapper files, including the JAR file, are small.
    Adding the JAR file to version control is expected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. helm-releases/minio-5.0.6.tgz

    y|consoleAdmin|diagnostics] ## Add new policies as explained here https://min.io/docs/minio/kubernetes/upstream/administration/identity-access-management.html#access-management ## NOTE: this will fail if LDAP is enabled in your MinIO deployment ## make sure to disable this if you are using LDAP. - accessKey: console secretKey: console123 policy: consoleAdmin # Or you can refer to specific secret #- accessKey: externalSecret # existingSecret: my-secret # existingSecretKey: password # policy: readonly...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 13 06:53:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    You can implement a custom task type if Gradle does not provide a task type that meets your build logic needs.
    
    To create a custom task class, you extend link:{javadocPath}/org/gradle/api/DefaultTask.html[`DefaultTask`] and make the extending class abstract:
    
    ====
    [.multi-language-sample]
    =====
    .app/build.gradle.kts
    [source,kotlin]
    ----
    abstract class MyCopyTask extends DefaultTask {
    
    }
    ----
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  6. samples/security/spire/spire-quickstart.yaml

              # can authenticate the kubelet cert, so skip validation.
              skip_kubelet_verification = true
    
              # We need to set disable_container_selectors = true if we make holdApplicationUntilProxyStarts = true in istio
              # see https://istio.io/latest/docs/reference/config/istio.mesh.v1alpha1/#ProxyConfig
              # If true, container selectors are not produced.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  7. src/runtime/sys_openbsd_amd64.s

    // They should be called with asmcgocall.
    // A pointer to the arguments is passed in DI.
    // A single int32 result is returned in AX.
    // (For more results, make an args/results structure.)
    TEXT runtime·pthread_attr_init_trampoline(SB),NOSPLIT,$0
    	MOVQ	0(DI), DI		// arg 1 - attr
    	CALL	libc_pthread_attr_init(SB)
    	RET
    
    TEXT runtime·pthread_attr_destroy_trampoline(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 15.5K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

    @@ -29,54 +25,16 @@
     char *
     STRNCAT (char *s1, const char *s2, size_t n)
     {
    -  char c;
       char *s = s1;
     
       /* Find the end of S1.  */
    -  do
    -    c = *s1++;
    -  while (c != '\0');
    -
    -  /* Make S1 point before next character, so we can increment
    -     it while memory is read (wins on pipelined cpus).  */
    -  s1 -= 2;
    +  s1 += strlen (s1);
     
    -  if (n >= 4)
    -    {
    -      size_t n4 = n >> 2;
    -      do
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  9. helm-releases/minio-5.0.2.tgz

    y|consoleAdmin|diagnostics] ## Add new policies as explained here https://min.io/docs/minio/kubernetes/upstream/administration/identity-access-management.html#access-management ## NOTE: this will fail if LDAP is enabled in your MinIO deployment ## make sure to disable this if you are using LDAP. - accessKey: console secretKey: console123 policy: consoleAdmin # Or you can refer to specific secret #- accessKey: externalSecret # existingSecret: my-secret # existingSecretKey: password # policy: readonly...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Dec 18 07:57:10 UTC 2022
    - 20.4K bytes
    - Viewed (0)
  10. helm/minio/values.yaml

      ## Add new policies as explained here https://min.io/docs/minio/kubernetes/upstream/administration/identity-access-management.html#access-management
      ## NOTE: this will fail if LDAP is enabled in your MinIO deployment
      ## make sure to disable this if you are using LDAP.
      - accessKey: console
        secretKey: console123
        policy: consoleAdmin
      # Or you can refer to specific secret
      #- accessKey: externalSecret
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Apr 28 10:14:37 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top