Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 277 for need (0.07 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    However, it's not because an artifact passes signature verification that you can trust it: you need to _trust the keys_.
    
    In practice, it means you need to list the keys that you trust for each artifact, which is done by adding a `pgp` entry instead of a `sha1` for example:
    
    [source,xml]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    #ifndef GTEST_HAS_GLOBAL_STRING
    // The user didn't tell us whether ::string is available, so we need
    // to figure it out.
    
    # define GTEST_HAS_GLOBAL_STRING 0
    
    #endif  // GTEST_HAS_GLOBAL_STRING
    
    #ifndef GTEST_HAS_STD_WSTRING
    // The user didn't tell us whether ::std::wstring is available, so we need
    // to figure it out.
    // TODO(******@****.***): uses autoconf to detect whether ::std::wstring
    //   is available.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

     private:
      // Returns if any resources need lifting.
      bool NeedsLifting() const { return !resources_.empty(); }
    
      // Returns the number of results generated by the lifted op.
      int GetLiftedNumResults() const { return num_new_results_; }
    
      // Generates hoisted reads for resources that need them before the op.
      void GenerateHoistedReads();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. pkg/proxy/ipvs/proxier.go

    		}
    	}
    
    	// Set the expire_nodest_conn sysctl we need for
    	if err := proxyutil.EnsureSysctl(sysctl, sysctlExpireNoDestConn, 1); err != nil {
    		return nil, err
    	}
    
    	// Set the expire_quiescent_template sysctl we need for
    	if err := proxyutil.EnsureSysctl(sysctl, sysctlExpireQuiescentTemplate, 1); err != nil {
    		return nil, err
    	}
    
    	// Set the ip_forward sysctl we need for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  5. src/index/suffixarray/sais2.go

    		// If k-1 is S-type (text[k-1] < text[k]), queue -k to save for the caller.
    		// If k is zero, k-1 doesn't exist, so we only need to leave it
    		// for the caller. The caller can't tell the difference between
    		// an empty slot and a non-empty zero, but there's no need
    		// to distinguish them anyway: the final suffix array will end up
    		// with one zero somewhere, and that will be a real zero.
    		k := j - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/listener.go

    	}
    	switch transport {
    	case istionetworking.TransportProtocolTCP:
    		// TODO: need to sanitize the opts.bind if its a UDS socket, as it could have colons, that envoy doesn't like
    		res.Name = getListenerName(opts.bind, opts.port, istionetworking.TransportProtocolTCP)
    		log.Debugf("buildGatewayListener: building TCP listener %s", res.Name)
    		// TODO: need to sanitize the opts.bind if its a UDS socket, as it could have colons, that envoy doesn't like
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

                return true;
            }
            // We need to ignore external variants when all edges are artifact ones
            for (EdgeState incomingEdge : incomingEdges) {
                if (!incomingEdge.isArtifactOnlyEdge()) {
                    return false;
                }
            }
            return true;
        }
    
        /*
         * When a node exits the graph, its constraints need to be cleaned up.
         * This means:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

    import static org.gradle.security.internal.SecuritySupport.toHexString
    
    class DependencyVerificationSignatureCheckIntegTest extends AbstractSignatureVerificationIntegrationTest {
    
        def "doesn't need checksums if signature is verified"() {
            createMetadataFile {
                keyServer(keyServerFixture.uri)
                verifySignatures()
                addTrustedKey("org:foo:1.0", validPublicKeyHexString)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller.go

    		return nil
    	}
    	return ds
    }
    
    // podsShouldBeOnNode figures out the DaemonSet pods to be created and deleted on the given node:
    //   - nodesNeedingDaemonPods: the pods need to start on the node
    //   - podsToDelete: the Pods need to be deleted on the node
    //   - err: unexpected error
    func (dsc *DaemonSetsController) podsShouldBeOnNode(
    	logger klog.Logger,
    	node *v1.Node,
    	nodeToDaemonPods map[string][]*v1.Pod,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    major release.
    
    Plugin authors who want to stay compatible with older Gradle versions need to limit their API usage to a subset that is compatible with these old versions. It’s not really different from any other new API in Gradle. E.g. if we introduce a new API for dependency resolution and a plugin wants to use that API, then they either need to drop support for older Gradle versions or they need to do some clever organization of their code to only execute the new code path on newer versions....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
Back to top