Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 329 for idea (0.04 sec)

  1. src/cmd/vendor/golang.org/x/text/language/match.go

    // match as the preferred match.
    //
    // If pin is true and have and tag are a strong match, it will henceforth only
    // consider matches for this language. This corresponds to the idea that most
    // users have a strong preference for the first defined language. A user can
    // still prefer a second language over a dialect of the preferred language by
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 25.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    typedef ::std::vector<string> Strings;
    
    // This helper template allows PrintTo() for tuples and
    // UniversalTersePrintTupleFieldsToStrings() to be defined by
    // induction on the number of tuple fields.  The idea is that
    // TuplePrefixPrinter<N>::PrintPrefixTo(t, os) prints the first N
    // fields in tuple t, and can be defined in terms of
    // TuplePrefixPrinter<N - 1>.
    
    // The inductive case.
    template <size_t N>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 30.9K bytes
    - Viewed (0)
  3. cmd/object-multipart-handlers.go

    			return
    		}
    		if globalBucketVersioningSys.PrefixEnabled(srcBucket, srcObject) && gr != nil {
    			// Versioning enabled quite possibly object is deleted might be delete-marker
    			// if present set the headers, no idea why AWS S3 sets these headers.
    			if gr.ObjInfo.VersionID != "" && gr.ObjInfo.DeleteMarker {
    				w.Header()[xhttp.AmzVersionID] = []string{gr.ObjInfo.VersionID}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  4. cmd/erasure-healing.go

    			//
    			// This is purely a defensive code, ideally parityBlocks
    			// is sufficient, however we can't know that since we
    			// do have the FileInfo{}.
    			return validMeta, true
    		}
    
    		// We have no idea what this file is, leave it as is.
    		return validMeta, false
    	}
    
    	if nonActionableMetaErrs > 0 || nonActionablePartsErrs > 0 {
    		return validMeta, false
    	}
    
    	if validMeta.Deleted {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  5. src/runtime/syscall_windows_test.go

    }
    
    //go:registerparams
    func sum5andPair(i1, i2, i3, i4, i5 uint8Pair) uintptr {
    	return uintptr(i1.x + i1.y + i2.x + i2.y + i3.x + i3.y + i4.x + i4.y + i5.x + i5.y)
    }
    
    // This test forces a GC. The idea is to have enough arguments
    // that insufficient spill slots allocated (according to the ABI)
    // may cause compiler-generated spills to clobber the return PC.
    // Then, the GC stack scanning will catch that.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 31 16:31:35 UTC 2023
    - 32.5K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-printers.h

    typedef ::std::vector<string> Strings;
    
    // This helper template allows PrintTo() for tuples and
    // UniversalTersePrintTupleFieldsToStrings() to be defined by
    // induction on the number of tuple fields.  The idea is that
    // TuplePrefixPrinter<N>::PrintPrefixTo(t, os) prints the first N
    // fields in tuple t, and can be defined in terms of
    // TuplePrefixPrinter<N - 1>.
    
    // The inductive case.
    template <size_t N>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 30.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/Monitor.java

      //    Imagine:
      //    guard.lock();
      //    try { /* monitor locked and guard satisfied here */ }
      //    finally { guard.unlock(); }
      // Here are Justin's design notes about this:
      //
      // This idea has come up from time to time, and I think one of my
      // earlier versions of Monitor even did something like this. I ended
      // up strongly favoring the current interface.
      //
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 18:22:01 UTC 2023
    - 38.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    // nodes than desired in the graph. This number is computed by looking
    // at the flat and cum weights of the node and the incoming/outgoing
    // edges. The fundamental idea is to penalize nodes that have a simple
    // fallthrough from their incoming to the outgoing edge.
    func entropyScore(n *Node) int64 {
    	score := float64(0)
    
    	if len(n.In) == 0 {
    		score++ // Favor entry nodes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    include::sample[dir="snippets/developingPlugins/pluginIdentifier/groovy",files="buildSrc/build.gradle[]"]
    ====
    
    [[sec:working_with_files_in_custom_tasks_and_plugins]]
    == Working with files
    
    When developing plugins, it's a good idea to be flexible when accepting input configuration for file locations.
    
    It is recommended to use Gradle's <<custom_gradle_types.adoc#managed_properties,managed properties>> and `project.layout` to select file or directory locations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/math/LongMath.java

      }
    
      @GwtIncompatible // TODO
      static int log10Floor(long x) {
        /*
         * Based on Hacker's Delight Fig. 11-5, the two-table-lookup, branch-free implementation.
         *
         * The key idea is that based on the number of leading zeros (equivalently, floor(log2(x))), we
         * can narrow the possible floor(log10(x)) values to two. For example, if floor(log2(x)) is 6,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 07 17:50:39 UTC 2024
    - 44.6K bytes
    - Viewed (0)
Back to top