Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for begins (2.4 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

              out = math_ops.select(condition, out, ones)
            elif self.same_scale_op == 'slice':
              begin = array_ops.zeros((array_ops.rank(out)), dtype=dtypes.int32)
              size = array_ops.ones((array_ops.rank(out)), dtype=dtypes.int32)
              out = array_ops.slice(out, begin, size)
            elif self.same_scale_op == 'transpose':
              out = array_ops.transpose(out)
            else:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

    }
    
    static flatbuffers::Offset<flatbuffers::Vector<int32_t>>
    ConvertDerivedShapeAttrForOptionWriter(
        llvm::ArrayRef<int64_t> r, flatbuffers::FlatBufferBuilder* builder) {
      std::vector<int> intVec(r.begin(), r.end());
      return builder->CreateVector(intVec);
    }
    
    static tflite::FullyConnectedOptionsWeightsFormat
    ConvertTFL_FullyConnectedOptionsWeightFormatAttrForOptionWriter(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  3. src/internal/trace/oldtrace.go

    		mappedType = go122.EvProcsChange
    		if it.preInit {
    			// The first EvGomaxprocs signals the end of trace initialization. At this point we've seen
    			// all goroutines that already existed at trace begin.
    			it.preInit = false
    			for gid := range it.createdPreInit {
    				// These are goroutines that already existed when tracing started but for which we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/preflight/checks_test.go

    	kubeadmapiv1 "k8s.io/kubernetes/cmd/kubeadm/app/apis/kubeadm/v1beta3"
    	configutil "k8s.io/kubernetes/cmd/kubeadm/app/util/config"
    )
    
    var (
    	externalEtcdRootCAFileContent = dedent.Dedent(`
    		-----BEGIN CERTIFICATE-----
    		MIIFrjCCA5agAwIBAgIUJAM5bQz/Ann8qye8T7Uyl+cAt3wwDQYJKoZIhvcNAQEN
    		BQAwbzEOMAwGA1UEBhMFQ2hpbmExDzANBgNVBAgTBkhhaW5hbjEOMAwGA1UEBxMF
    		U2FueWExDTALBgNVBAoTBGV0Y2QxFjAUBgNVBAsTDWV0Y2Qgc2VjdXJpdHkxFTAT
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  5. docs/en/docs/deployment/docker.md

    │   └── main.py
    ├── Dockerfile
    └── requirements.txt
    ```
    
    #### Behind a TLS Termination Proxy
    
    If you are running your container behind a TLS Termination Proxy (load balancer) like Nginx or Traefik, add the option `--proxy-headers`, this will tell Uvicorn (through the FastAPI CLI) to trust the headers sent by that proxy telling it that the application is running behind HTTPS, etc.
    
    ```Dockerfile
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

        def "can visit and edit zip archive differently from settings script when gradle is run in two simultaneous processes"() {
            given: "a started server which can be used to cause the edits to begin at approximately the same time"
            server.start()
    
            and: "a zip archive in the root with many files with the same content, so that the editing won't finish too quickly"
            createZip('test.zip') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. pkg/kubelet/certificate/kubelet.go

    	return dnsNames, ips
    }
    
    // NewKubeletClientCertificateManager sets up a certificate manager without a
    // client that can be used to sign new certificates (or rotate). If a CSR
    // client is set later, it may begin rotating/renewing the client cert.
    func NewKubeletClientCertificateManager(
    	certDirectory string,
    	nodeName types.NodeName,
    	bootstrapCertData []byte,
    	bootstrapKeyData []byte,
    	certFile string,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 03:07:16 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pkg/workloadapi/workload.proto

    // Aliases are keyed by network/IP address. Example: "default/1.2.3.4".
    //
    // In some cases, we do not know the IP address of a Workload. For instance, we may simply know
    // that there is a workload behind a gateway, and rely on the gateway to handle the rest.
    // In this case, the key format will be "resource-uid". The resource can be a Pod, WorkloadEntry, etc.
    // These resources cannot be looked up on-demand.
    //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/compile_mlir_util.cc

      pm.addPass(mlir::createSymbolDCEPass());
    
      // Sink constants to regions so that ops requiring constant operands can
      // access the constant and there is no indirection through control flow region
      // arguments. Also, note that this pass is in MHLO but it is generic and sinks
      // constants for all ops with regions.
      pm.addNestedPass<mlir::func::FuncOp>(
          mlir::mhlo::createSinkConstantsToControlFlowPass());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 17:24:39 UTC 2024
    - 45.3K bytes
    - Viewed (0)
  10. pkg/test/framework/test.go

    				t.goTest.Name(), t.ctx.Settings().Revisions.Minimum(), t.minIstioVersion)
    		}
    	}
    
    	start := time.Now()
    	scopes.Framework.Infof("=== BEGIN: Test: '%s[%s]' ===", rt.suiteContext().Settings().TestID, t.goTest.Name())
    
    	// Initial setup if we're running in Parallel.
    	if parallel {
    		// Run the underlying Go test in parallel. This will not return until the parent
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top