Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 110 for palmer (0.31 sec)

  1. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DI_SHOWCLASS     DI_FLAGS = 0x00000004 // show class list
    	DI_SHOWALL       DI_FLAGS = 0x00000007 // both class & compat list shown
    	DI_NOVCP         DI_FLAGS = 0x00000008 // don't create a new copy queue--use caller-supplied FileQueue
    	DI_DIDCOMPAT     DI_FLAGS = 0x00000010 // Searched for compatible devices
    	DI_DIDCLASS      DI_FLAGS = 0x00000020 // Searched for class devices
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modload/init.go

    		}
    		return gover.FromGoMod(f)
    	}
    	return gover.DefaultGoModVersion
    }
    
    // Godebugs returns the godebug lines set on the single module, in module mode,
    // or on the go.work file in workspace mode.
    // The caller must not modify the result.
    func (mms *MainModuleSet) Godebugs() []*modfile.Godebug {
    	if inWorkspaceMode() {
    		if mms.workFile != nil {
    			return mms.workFile.Godebug
    		}
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/Preconditions.java

     *
     * <p>If the precondition is not met, the {@code Preconditions} method throws an unchecked exception
     * of a specified type, which helps the method in which the exception was thrown communicate that
     * its caller has made a mistake. This allows constructs such as
     *
     * <pre>{@code
     * public static double sqrt(double value) {
     *   if (value < 0) {
     *     throw new IllegalArgumentException("input is negative: " + value);
     *   }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    // generate Swagger API documentation for its models. Please read this PR for more
    // information on the implementation: https://github.com/emicklei/go-restful/pull/215
    //
    // TODOs are ignored from the parser (e.g. TODO(andronat):... || TODO:...) if and only if
    // they are on one line! For multiple line or blocks that you want to ignore use ---.
    // Any context after a --- is ignored.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // setfsgid(2) will return a non-nil error only if its caller lacks CAP_SETUID capability.
    // If the call fails due to other reasons, current fsgid will be returned.
    func SetfsgidRetGid(gid int) (int, error) {
    	return setfsgid(gid)
    }
    
    // SetfsuidRetUid sets fsuid for current thread and returns previous fsuid set.
    // setfsgid(2) will return a non-nil error only if its caller lacks CAP_SETUID capability
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    func (s *xlStorage) ReadAll(ctx context.Context, volume string, path string) (buf []byte, err error) {
    	// Specific optimization to avoid re-read from the drives for `format.json`
    	// in-case the caller is a network operation.
    	if volume == minioMetaBucket && path == formatConfigFile {
    		s.RLock()
    		formatData := make([]byte, len(s.formatData))
    		copy(formatData, s.formatData)
    		s.RUnlock()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// arg0=ptr,arg1=mem, returns void.  Faults if ptr is nil.
    		// LoweredGetCallerSP returns the SP of the caller of the current function. arg0=mem.
    		{name: "LoweredGetCallerSP", argLength: 1, reg: gp01, rematerializeable: true},
    		// LoweredGetCallerPC evaluates to the PC to which its "caller" will return.
    		// I.e., if f calls g "calls" getcallerpc,
    		// the result should be the PC within f that g will return to.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/base/Preconditions.java

     *
     * <p>If the precondition is not met, the {@code Preconditions} method throws an unchecked exception
     * of a specified type, which helps the method in which the exception was thrown communicate that
     * its caller has made a mistake. This allows constructs such as
     *
     * <pre>{@code
     * public static double sqrt(double value) {
     *   if (value < 0) {
     *     throw new IllegalArgumentException("input is negative: " + value);
     *   }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  9. src/testing/testing.go

    	if c.inFuzzFn {
    		panic(fmt.Sprintf("testing: f.%s was called inside the fuzz target, use t.%s instead", name, name))
    	}
    }
    
    // frameSkip searches, starting after skip frames, for the first caller frame
    // in a function not marked as a helper and returns that frame.
    // The search stops if it finds a tRunner function that
    // was the entry point into the test and the test is not a subtest.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // output.  Can be removed from the listeners list to shut down default
      // console output.  Note that removing this object from the listener list
      // with Release transfers its ownership to the caller and makes this
      // function return NULL the next time.
      TestEventListener* default_result_printer() const {
        return default_result_printer_;
      }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
Back to top