Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 459 for Lives (0.6 sec)

  1. android/guava/src/com/google/common/graph/AbstractDirectedNetworkConnections.java

      }
    
      @Override
      public N adjacentNode(E edge) {
        // Since the reference node is defined to be 'source' for directed graphs,
        // we can assume this edge lives in the set of outgoing edges.
        // (We're relying on callers to call this method only with an edge that's in the graph.)
        return requireNonNull(outEdgeMap.get(edge));
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  2. src/runtime/security_test.go

    	t.Helper()
    	// We escalate privileges here even if we are root, because for some reason on some builders
    	// (at least freebsd-amd64-13_0) the default PATH doesn't include /usr/sbin, which is where
    	// chown lives, but using 'su root -c' gives us the correct PATH.
    
    	// buildTestProg uses os.MkdirTemp which creates directories with 0700, which prevents
    	// setuid binaries from executing because of the missing g+rx, so we need to set the parent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 18:10:14 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. pilot/pkg/model/credentials/resource.go

    )
    
    const (
    	// KubernetesSecretType is the name of a SDS secret stored in Kubernetes. Secrets here take the form
    	// kubernetes://secret-name. They will be pulled from the same namespace and cluster as the requesting proxy lives in.
    	KubernetesSecretType    = "kubernetes"
    	KubernetesSecretTypeURI = KubernetesSecretType + "://"
    	// KubernetesGatewaySecretType is the name of a SDS secret stored in Kubernetes, used by the gateway-api. Secrets here
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 28 20:33:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/AbstractDirectedNetworkConnections.java

      }
    
      @Override
      public N adjacentNode(E edge) {
        // Since the reference node is defined to be 'source' for directed graphs,
        // we can assume this edge lives in the set of outgoing edges.
        // (We're relying on callers to call this method only with an edge that's in the graph.)
        return requireNonNull(outEdgeMap.get(edge));
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Platform.java

      /*
       * Arrays are a mess from a nullness perspective, and Class instances for object-array types are
       * even worse. For now, we just suppress and move on with our lives.
       *
       * - https://github.com/jspecify/jspecify/issues/65
       *
       * - https://github.com/jspecify/jdk/commit/71d826792b8c7ef95d492c50a274deab938f2552
       */
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Platform.java

      /*
       * Arrays are a mess from a nullness perspective, and Class instances for object-array types are
       * even worse. For now, we just suppress and move on with our lives.
       *
       * - https://github.com/jspecify/jspecify/issues/65
       *
       * - https://github.com/jspecify/jdk/commit/71d826792b8c7ef95d492c50a274deab938f2552
       */
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/range.go

    		//
    		// To avoid this, we keep the "pointer" alternately in 2 variables, one
    		// pointer typed and one uintptr typed. Most of the time it lives in the
    		// regular pointer variable, but when it might be out of bounds (after it
    		// has been incremented, but before the loop condition has been checked)
    		// it lives briefly in the uintptr variable.
    		//
    		// hp contains the pointer version (of type *T, where T is the element type).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

          labels:
            # Label should not be selected. We will create a workload entry instead
            istio.io/test-vm: {{ $.Service }}
            istio.io/test-vm-version: {{ $subset.Version }}
            # HBONE enabled proxy lives inside the VM. Don't use CNI to redirect.
            istio.io/dataplane-mode: none
        spec:
          # Disable kube-dns, to mirror VM
          # we set policy to none and explicitly provide a set of invalid values
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. pkg/proxy/nftables/README.md

    a single packet can go `input` -> "local process" -> `output`, which it cannot. Note also
    that the `ingress` and `egress` hooks are special and mostly not available to us;
    kube-proxy lives in the middle section of diagram, with the five main netfilter hooks.
    
    There are three paths through the diagram, called the "input", "forward", and "output"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 21 14:37:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. tensorflow/api_template_v1.__init__.py

    _current_module.app.flags = flags  # pylint: disable=undefined-variable
    setattr(_current_module, "flags", flags)
    
    _major_api_version = 1
    
    # Add module aliases from Keras to TF.
    # Some tf endpoints actually lives under Keras.
    _current_module.layers = _KerasLazyLoader(
        globals(),
        submodule="__internal__.legacy.layers",
        name="layers",
        mode="v1")
    if _tf_uses_legacy_keras:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top