Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 52 for hamster (0.1 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // In case of multiple matches, clients should use the longest matching CIDR.
      // The server returns only those CIDRs that it thinks that the client can match.
      // For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP.
      // Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // In case of multiple matches, clients should use the longest matching CIDR.
      // The server returns only those CIDRs that it thinks that the client can match.
      // For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP.
      // Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    	// sweeping (and hence never race with writes).
    	//
    	// This is used to quickly find whole spans that can be freed.
    	//
    	// TODO(austin): It would be nice if this was uint64 for
    	// faster scanning, but we don't have 64-bit atomic bit
    	// operations.
    	pageMarks [pagesPerArena / 8]uint8
    
    	// pageSpecials is a bitmap that indicates which spans have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            TestFile dir = workingDir;
            while (dir != null && getTestDirectoryProvider().getTestDirectory().isSelfOrDescendant(dir)) {
                if (hasSettingsFile(dir) || hasSettingsFile(dir.file("master"))) {
                    return;
                }
                dir = dir.getParentFile();
            }
            workingDir.createFile("settings.gradle");
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/ImmutableSortedMap.java

        return CollectCollectors.toImmutableSortedMap(
            comparator, keyFunction, valueFunction, mergeFunction);
      }
    
      /*
       * TODO(kevinb): Confirm that ImmutableSortedMap is faster to construct and
       * uses less memory than TreeMap; then say so in the class Javadoc.
       */
      private static final Comparator<?> NATURAL_ORDER = Ordering.natural();
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewrite.go

    	case "amd64", "arm64":
    		return true
    	case "ppc64le", "ppc64":
    		return sz < 512
    	}
    	return false
    }
    
    // isInlinableMemmove reports whether the given arch performs a Move of the given size
    // faster than memmove. It will only return true if replacing the memmove with a Move is
    // safe, either because Move will do all of its loads before any of its stores, or
    // because the arguments are known to be disjoint.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Watchers stopped after startDispatching will be delayed to finishDispatching,
    
    	// Since add() can block, we explicitly add when cacher is unlocked.
    	// Dispatching event in nonblocking way first, which make faster watchers
    	// not be blocked by slower ones.
    	if event.Type == watch.Bookmark {
    		for _, watcher := range c.watchersBuffer {
    			watcher.nonblockingAdd(event)
    		}
    	} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	}
    
    	// Toolchain2 should be semantically equivalent to toolchain1,
    	// but it was built using the newly built compiler instead of the Go bootstrap compiler,
    	// so it should at the least run faster. Also, toolchain1 had no build IDs
    	// in the binaries, while toolchain2 does. In non-release builds, the
    	// toolchain's build IDs feed into constructing the build IDs of built targets,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    :metadata-file-spec: https://github.com/gradle/gradle/blob/master/platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md
    
    [[java_testing]]
    = Testing in Java & JVM projects
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. src/time/time.go

    	// Special case: d is a multiple of 1 second.
    	case d%Second == 0:
    		d1 := int64(d / Second)
    		qmod2 = int(sec/d1) & 1
    		r = Duration(sec%d1)*Second + Duration(nsec)
    
    	// General case.
    	// This could be faster if more cleverness were applied,
    	// but it's really only here to avoid special case restrictions in the API.
    	// No one will care about these cases.
    	default:
    		// Compute nanoseconds as 128-bit number.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
Back to top