Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 672 for therefore (0.25 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/BuildOutputCleanupRegistry.java

         * Registers outputs to be cleaned up as {@link org.gradle.api.Project#files(Object...)}.
         */
        void registerOutputs(Object files);
    
        /**
         * Determines if an output file is owned by this build and therefore can be safely removed.
         *
         * A file is owned by the build if it is registered as an output directly or within a directory registered as an output.
         */
        boolean isOutputOwnedByBuild(File file);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/base/path.go

    		rel, err := filepath.Rel(Cwd(), p)
    		if err == nil && len(rel) < len(p) {
    			p = rel
    		}
    		out = append(out, p)
    	}
    	return out
    }
    
    // IsTestFile reports whether the source file is a set of tests and should therefore
    // be excluded from coverage analysis.
    func IsTestFile(file string) bool {
    	// We don't cover tests, only the code they test.
    	return strings.HasSuffix(file, "_test.go")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 20 19:17:27 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. src/encoding/gob/example_encdec_test.go

    // license that can be found in the LICENSE file.
    
    package gob_test
    
    import (
    	"bytes"
    	"encoding/gob"
    	"fmt"
    	"log"
    )
    
    // The Vector type has unexported fields, which the package cannot access.
    // We therefore write a BinaryMarshal/BinaryUnmarshal method pair to allow us
    // to send and receive the type with the gob package. These interfaces are
    // defined in the "encoding" package.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/injection-with-mismatched-sidecar.yaml

        name: details
      - image: docker.io/istio/proxyv2:1.3.0-prerelease
        name: istio-proxy
    ---
    # details-v1-pod-overwritten-sidecar has a custom sidecar version injected and
    # therefore should not match the injector version.
    apiVersion: v1
    kind: Pod
    metadata:
      labels:
        app: details
      annotations:
        sidecar.istio.io/proxyImage: docker.io/istio/proxyv2:1.3.0-prerelease
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 13 05:31:06 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/error_util_test.cc

      // Build a small stack for each error; the MLIR diagnostic filtering will
      // surface a location that would otherwise be filtered if it is the only
      // location associated with an error; therefore we need a combinatination of
      // locations to test.
      auto callsite_loc = mlir::CallSiteLoc::get(loc, loc_filtered);
      auto callsite_loc2 = mlir::CallSiteLoc::get(loc2, loc_filtered2);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. releasenotes/notes/gateway-infra-gep.yaml

          and continue to use the old label for label selectors belonging to existing `Deployment` and `Service` resources. Therefore, once
          you've completed your Istio upgrade, you can change the label selector in `Deployment` and `Service` resources whenever you are
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 21:52:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/DaemonPriorityIntegrationTest.groovy

     * For forking a daemon process in embedded mode:
     * The command line length is already close to the limit of what Windows can handle.
     * The few extra arguments that the priority change requires seem to push it over the edge.
     * Therefore, we do not run these tests embedded on Windows.
     **/
    @Requires(IntegTestPreconditions.NotEmbeddedExecutorOrNotWindows)
    class DaemonPriorityIntegrationTest extends DaemonIntegrationSpec {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tpu_embedding_ops_registry.h

    //    }
    class TPUEmbeddingOpsRegistry {
     public:
      // Add the op to the registry.
      //
      // Adding an op here will allow use old bridge legalization from the MLIR
      // bridge with the use of fallback mechanism. Therefore, addition of any op
      // here must have a python test with MLIR bridge enabled to verify that the
      // fallback works correctly.
      template <typename OpType>
      void Add() {
        ops_type_ids_.insert(TypeID::get<OpType>());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 14 05:42:28 UTC 2022
    - 2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/splice.go

    package runtime
    
    import (
    	"bytes"
    	"io"
    )
    
    // Splice is the interface that wraps the Splice method.
    //
    // Splice moves data from given slice without copying the underlying data for
    // efficiency purpose. Therefore, the caller should make sure the underlying
    // data is not changed later.
    type Splice interface {
    	Splice([]byte)
    	io.Writer
    	Reset()
    	Bytes() []byte
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 18:03:48 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/testdata/Isaac.Newton-Opticks.txt

    whilst the rest of the Rays remain in it, and therefore that Light MO is
    compounded of Rays differently refrangible. And because the Planes AB
    and CD are parallel, and therefore by equal and contrary Refractions
    destroy one anothers Effects, the incident Light FM must be of the same
    Kind and Nature with the emergent Light MO, and therefore doth also
    consist of Rays differently refrangible. These two Lights FM and MO,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 01 16:16:21 UTC 2018
    - 553.9K bytes
    - Viewed (0)
Back to top