Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 151 for pruned (1.47 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_cluster_formation.cc

    // `tf_device.cluster` and associated terminator. Results that have no uses
    // outside of the cluster (i.e. results of ops in the cluster are only consumed
    // by other ops in the cluster) are pruned.
    llvm::SmallVector<Value, 8> CollectClusterResults(
        Block* block, const OpSetVector& cluster_ops) {
      llvm::SmallVector<Value, 8> results;
    
      for (Operation* op : cluster_ops) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 22:03:30 UTC 2024
    - 39.3K bytes
    - Viewed (0)
  2. src/main/resources/fess_config.properties

    crawler.document.html.lang.xpath=//HTML/@lang
    crawler.document.html.digest.xpath=//META[@name='description']/@content
    crawler.document.html.canonical.xpath=//LINK[@rel='canonical'][1]/@href
    crawler.document.html.pruned.tags=noscript,script,style,header,footer,aside,nav,a[rel=nofollow]
    crawler.document.html.max.digest.length=120
    crawler.document.html.default.lang=
    crawler.document.html.default.include.index.patterns=
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modload/import.go

    			// However, in order to actually compile it we need to know what
    			// Go language version to use, which requires its go.mod file.
    			//
    			// If the module graph is pruned and this is a test-only dependency
    			// of a package in "all", we didn't necessarily load that file
    			// when we read the module graph, so do it now to be sure.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 27.7K bytes
    - Viewed (0)
  4. tensorflow/c/eager/tape.h

      //
      // Executes the backward function in order to trace its gradient, which will
      // waste computation if executing eagerly (when graph building the unneeded
      // computation is pruned). Temporarily sets `backward_tape` so that
      // Accumulate will forward op executions to the tape while the backward
      // function is running; this effectively adds the backward tape to the active
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  5. hack/update-vendor.sh

          exit 1
        fi
    
        # prune unused pinned replace directives
        comm -23 \
          <(go mod edit -json | jq -r '.Replace[] | .Old.Path' | sort) \
          <(go list -m -json all | jq -r .Path | sort) |
        while read -r X; do echo "-dropreplace=${X}"; done |
        xargs -L 100 go mod edit -fmt
    
        # prune replace directives that pin to the naturally selected version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. src/runtime/pinner.go

    // collector until the [Pinner.Unpin] method has been called.
    //
    // A pointer to a pinned object can be directly stored in C memory or can be
    // contained in Go memory passed to C functions. If the pinned object itself
    // contains pointers to Go objects, these objects must be pinned separately if they
    // are going to be accessed from C code.
    //
    // The argument must be a pointer of any type or an [unsafe.Pointer].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/CertificatePinner.kt

    ) {
      /**
       * Confirms that at least one of the certificates pinned for `hostname` is in `peerCertificates`.
       * Does nothing if there are no certificates pinned for `hostname`. OkHttp calls this after a
       * successful TLS handshake, but before the connection is used.
       *
       * @throws SSLPeerUnverifiedException if `peerCertificates` don't match the certificates pinned
       *     for `hostname`.
       */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/internal/transformation/impl/DefaultConsumerPomBuilder.java

                builder.packaging(POM_PACKAGING);
                builder.profiles(prune(model.getProfiles()));
    
                model = builder.build();
                String modelVersion = new MavenModelVersion().getModelVersion(model);
                model = model.withModelVersion(modelVersion);
            } else {
                Model.Builder builder = prune(
                        Model.newBuilder(model, true)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. hack/make-rules/test.sh

      if [[ ! ${KUBE_KEEP_VERBOSE_TEST_OUTPUT} =~ ^[yY]$ ]]; then
        rm "${junit_filename_prefix}"*.stdout
      fi
    
      if ! command -v prune-junit-xml >/dev/null 2>&1; then
        kube::log::status "prune-junit-xml not found; installing from ./cmd"
        go -C "${KUBE_ROOT}/cmd/prune-junit-xml" install .
      fi
      prune-junit-xml "${junit_xml_filename}"
    
      kube::log::status "Saved JUnit XML test report to ${junit_xml_filename}"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/discovery/token/token.go

    // It then makes sure it can trust the API Server by looking at the JWS-signed tokens and (if CACertHashes is not empty)
    // validating the cluster CA against a set of pinned public keys
    func RetrieveValidatedConfigInfo(cfg *kubeadmapi.Discovery, timeout time.Duration) (*clientcmdapi.Config, error) {
    	return retrieveValidatedConfigInfo(nil, cfg, constants.DiscoveryRetryInterval, timeout)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top