Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 28 for preferGo (0.19 sec)

  1. src/crypto/x509/x509_test.go

    	}
    
    	// It's never been documented that asn1.Marshal/Unmarshal on rsa.PublicKey works,
    	// but it does, and we know of code that depends on it.
    	// Lock that in, even though we'd prefer that people use MarshalPKCS1PublicKey and ParsePKCS1PublicKey.
    	derBytes2, err := asn1.Marshal(*pub)
    	if err != nil {
    		t.Errorf("Marshal(rsa.PublicKey): %v", err)
    	} else if !bytes.Equal(derBytes, derBytes2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/popper.min.js.map

    but as\n * good as it can be within reason.\n * Discussion here: https://github.com/FezVrasta/popper.js/pull/715\n *\n * Low DPI screens cause a popper to be blurry if not using full pixels (Safari\n * as well on High DPI screens).\n *\n * Firefox prefers no rounding for positioning and does not have blurriness on\n * high DPI screens.\n *\n * Only horizontal placement and left/right values need to be considered.\n */\nexport default function getRoundedOffsets(data, shouldRound) {\n  const { popper,...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

      log-trap-push "log-error ${bootstep}"
      log-proto "${bootstep}" "${LOG_STATUS_STARTED}"
      $command
      log-proto "${bootstep}" "${LOG_STATUS_COMPLETED}"
      log-trap-pop
    }
    
    # Logs a bootstrap step start. Prefer log-wrap.
    # Args:
    #   $1 : bootstrap step name.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    function log-start {
      local bootstep="$1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.4.md

    - **Scheduling**
      - [alpha] Allows pods to require or prohibit (or prefer or prefer not) co-scheduling on the same node (or zone or other topology domain) as another set of pods. ([docs](http://kubernetes.io/docs/user-guide/node-selection/) ([kubernetes/features#51](https://github.com/kubernetes/enhancements/issues/51))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_pods_test.go

    			podIPs: []v1.PodIP{
    				{IP: "192.168.0.1"},
    				{IP: "2001:db8::2"},
    			},
    		},
    		{
    			// by default the cluster prefers IPv4
    			name: "CRI dual-stack PodIPs override NodeAddresses prefer IPv4",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    				{Type: v1.NodeInternalIP, Address: "fd01::1234"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "description": "Node affinity is a group of node affinity scheduling rules.",
          "properties": {
            "preferredDuringSchedulingIgnoredDuringExecution": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        auto name_loc_id = mlir::StringAttr::get(context_, name_for_name_loc);
    
        std::shared_ptr<AbstractStackTrace> stack_trace = node.GetStackTrace();
    
        // Prefer stack traces if available, fallback to debug info if not, and then
        // finally to just name. Older versions of debug info concatenated `@` onto
        // the node name for the default graph, so we check both locations.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  8. src/runtime/proc.go

    		stoppingCPUTime:  stoppingCPUTime,
    	}
    }
    
    // reason is the same STW reason passed to stopTheWorld. start is the start
    // time returned by stopTheWorld.
    //
    // now is the current time; prefer to pass 0 to capture a fresh timestamp.
    //
    // stattTheWorldWithSema returns now.
    func startTheWorldWithSema(now int64, w worldStop) int64 {
    	assertWorldStopped()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CacheTest.kt

      }
    
      /**
       * When the server returns a full response body we will store it and return it regardless of what
       * its Last-Modified date is. This behavior was different prior to OkHttp 3.5 when we would prefer
       * the response with the later Last-Modified date.
       *
       * https://github.com/square/okhttp/issues/2886
       */
      @Test
      fun serverReturnsDocumentOlderThanCache() {
        server.enqueue(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_pods.go

    		reason, ok := kl.reasonCache.Get(pod.UID, container.Name)
    		if !ok {
    			// In fact, we could also apply Waiting state here, but it is less informative,
    			// and the container will be restarted soon, so we prefer the original state here.
    			// Note that with the current implementation of ShouldContainerBeRestarted the original state here
    			// could be:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top