Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. VULNERABILITY_REPORT.md

    ## Scope
    
    The vulnerability management policy described in this document covers the
    process of investigating, assessing and resolving a vulnerability report
    opened by a MinIO employee or an external third party.
    
    Therefore, it lists pre-conditions and actions that should be performed to
    resolve and fix a reported vulnerability.
    
    ## Vulnerability Management Process
    
    The vulnerability management process requires that the vulnerability report
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 1.5K 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  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/main/java/jcifs/dcerpc/msrpc/MsrpcShareEnum.java

        }
    
    
        public FileEntry[] getEntries () {
            /*
             * The ShareInfo1 class does not implement the FileEntry
             * interface (because it is generated from IDL). Therefore
             * we must create an array of objects that do.
             */
            srvsvc.ShareInfoCtr1 ctr = (srvsvc.ShareInfoCtr1) this.info;
            MsrpcShareInfo1[] entries = new MsrpcShareInfo1[ctr.count];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2K bytes
    - Viewed (0)
Back to top