Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 4,901 for know (0.05 sec)

  1. src/runtime/cgo/gcc_aix_ppc64.c

     * adding special code in cmd/link.
     * However, it will be called for every Go programs which has cgo.
     * Inside _rt0_ppc64_aix_lib(), runtime.isarchive is checked in order
     * to know if this program is a c-archive or a simple cgo program.
     * If it's not set, _rt0_ppc64_ax_lib() returns directly.
     */
    static void libinit() {
    	_rt0_ppc64_aix_lib();
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 24 22:38:02 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    How to contribute
    =================
    
    Thank you so much for wanting to contribute to Guava! Here are a few important
    things you should know about contributing:
    
    1.  API changes require discussion, use cases, etc. Code comes later.
    2.  Pull requests are great for small fixes for bugs, documentation, etc.
    3.  Pull requests are not merged directly into the master branch.
    4.  Code contributions require signing a Google CLA.
    
    API changes
    -----------
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/waitgroup/ratelimited_waitgroup_test.go

    	n1, n2 := 100, 101
    
    	// so we know when all requests in n1 are done using the waitgroup
    	n1DoneWG := sync.WaitGroup{}
    
    	// so we know when all requests in n2 have called Add,
    	// but not finished with the waitgroup yet.
    	// this will allow the test to invoke 'Wait' once all requests
    	// in n2 have called `Add`, but none has called `Done` yet.
    	n2BeforeWaitWG := sync.WaitGroup{}
    	// so we know when all requests in n2 have called Done and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 21 14:08:00 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/scan/config/BuildScanConfig.java

        boolean isDisabled();
    
        /**
         * Indicates whether the build scan plugin should not apply itself because its known to be incompatible.
         *
         * @since 4.4
         */
        String getUnsupportedMessage();
    
        /**
         * Attributes about the build environment that the build scan plugin needs to know about.
         *
         * This is effectively an insulation layer between the plugin and internal API.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_flag.txt

    # Using a custom flag mixed with regular 'go test' flags should be OK.
    go test -count=1 -custom -args -v=7
    
    # However, it should be an error to use custom flags when -c is used,
    # since we know for sure that no test binary will run at all.
    ! go test -c -custom
    stderr '^go: unknown flag -custom cannot be used with -c$'
    
    # The same should apply even if -c comes after a custom flag.
    ! go test -custom -c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 01 08:31:45 UTC 2022
    - 893 bytes
    - Viewed (0)
  6. pilot/pkg/networking/apigen/apigen.go

    		// Still return an empty response - to not break waiting code. It is fine to not know about some resource.
    		return resp, model.DefaultXdsLogDetails, nil
    	}
    	// TODO: extra validation may be needed - at least logging that a resource
    	// of unknown type was requested. This should not be an error - maybe client asks
    	// for a valid CRD we just don't know about. An empty set indicates we have no such config.
    	rgvk := config.GroupVersionKind{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:01:38 UTC 2023
    - 5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s

    //go:build linux && (mips || mipsle) && gc
    
    #include "textflag.h"
    
    //
    // System calls for mips, Linux
    //
    
    // Just jump to package syscall's implementation for all these functions.
    // The runtime may know about them.
    
    TEXT ·Syscall(SB),NOSPLIT,$0-28
    	JMP syscall·Syscall(SB)
    
    TEXT ·Syscall6(SB),NOSPLIT,$0-40
    	JMP syscall·Syscall6(SB)
    
    TEXT ·Syscall9(SB),NOSPLIT,$0-52
    	JMP syscall·Syscall9(SB)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/net/HostSpecifier.java

     * and pattern-based checks are performed.
     *
     * <p>If you know that a given string represents a numeric IP address, use {@link InetAddresses} to
     * obtain and manipulate a {@link java.net.InetAddress} instance from it rather than using this
     * class. Similarly, if you know that a given string represents a domain name, use {@link
     * InternetDomainName} rather than this class.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 05 09:18:40 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. tensorflow/c/experimental/saved_model/internal/saved_model_api_test.cc

          compute_fn, compute_fn_inputs.data(), compute_fn_inputs.size(), status);
      EXPECT_EQ(TF_GetCode(status), TF_OK) << TF_Message(status);
    
      // TODO(bmzhao): Finish API on FunctionMetadata args, so we know how many
      // inputs + outputs a function has.
      TFE_TensorHandle* compute_fn_outputs[1] = {nullptr};
      int num_retvals = 1;
    
      TFE_Execute(compute_fn_op, &compute_fn_outputs[0], &num_retvals, status);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 23 08:08:45 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s

    //go:build linux && (ppc64 || ppc64le) && gc
    
    #include "textflag.h"
    
    //
    // System calls for ppc64, Linux
    //
    
    // Just jump to package syscall's implementation for all these functions.
    // The runtime may know about them.
    
    TEXT ·SyscallNoError(SB),NOSPLIT,$0-48
    	BL	runtime·entersyscall(SB)
    	MOVD	a1+8(FP), R3
    	MOVD	a2+16(FP), R4
    	MOVD	a3+24(FP), R5
    	MOVD	R0, R6
    	MOVD	R0, R7
    	MOVD	R0, R8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 909 bytes
    - Viewed (0)
Back to top