Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 50 for dain (2.55 sec)

  1. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

        // side.
        //
        // We also use this as the name for the NameLoc for ops in function, since
        // otherwise our names could collide across functions.
        // For ops in the main graph, we omit the "@function_name" (which, would be
        // just "@" since function_name would be empty) because some code seems to
        // depend on the name being this way for correctness.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    		}
    
    		if rs != 0 && (rst == sym.Sxxx || rst == sym.SXREF) {
    			// When putting the runtime but not main into a shared library
    			// these symbols are undefined and that's OK.
    			if target.IsShared() || target.IsPlugin() {
    				if ldr.SymName(rs) == "main.main" || (!target.IsPlugin() && ldr.SymName(rs) == "main..inittask") {
    					sb := ldr.MakeSymbolUpdater(rs)
    					sb.SetType(sym.SDYNIMPORT)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

      # Tests the case of having a signature key of `main` because it is a
      # special name in the TF quantizer's MLIR pipeline that should be treated
      # with care.
      @test_util.run_in_graph_and_eager_modes
      def test_ptq_model_with_signature_key_main(self):
        signature_key = 'main'
        tags = {tag_constants.SERVING}
    
        input_placeholder = self._create_and_save_tf1_conv_model(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    called the <i>main package</i> with all the packages it imports, transitively.
    The main package must
    have package name <code>main</code> and
    declare a function <code>main</code> that takes no
    arguments and returns no value.
    </p>
    
    <pre>
    func main() { … }
    </pre>
    
    <p>
    Program execution begins by initializing the main package and then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. api/maven-api-model/src/main/mdo/maven.mdo

                files associated with a project. These resources are often included in the final
                package.
                The default value is {@code src/main/resources}.
              </description>
              <association>
                <type>Resource</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  6. pkg/kubelet/kubelet.go

    	klet.setNodeStatusFuncs = klet.defaultNodeStatusFuncs()
    
    	return klet, nil
    }
    
    type serviceLister interface {
    	List(labels.Selector) ([]*v1.Service, error)
    }
    
    // Kubelet is the main kubelet implementation.
    type Kubelet struct {
    	kubeletConfiguration kubeletconfiginternal.KubeletConfiguration
    
    	// hostname is the hostname the kubelet detected or was given via flag/config
    	hostname string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  7. pkg/controller/garbagecollector/garbagecollector_test.go

    				}
    			}
    		},
    	}
    }
    
    func insertEvent(e *event) step {
    	return step{
    		name: "insertEvent",
    		check: func(ctx stepContext) {
    			ctx.t.Helper()
    			// drain queue into items
    			var items []*event
    			for ctx.gc.dependencyGraphBuilder.graphChanges.Len() > 0 {
    				item, _ := ctx.gc.dependencyGraphBuilder.graphChanges.Get()
    				ctx.gc.dependencyGraphBuilder.graphChanges.Done(item)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  8. cluster/gce/util.sh

          cat >>"$file" <<EOF
    ETCD_DOCKER_REPOSITORY: $(yaml-quote "${ETCD_DOCKER_REPOSITORY}")
    EOF
        fi
        # ETCD_VERSION (if set) allows you to use custom version of etcd.
        # The main purpose of using it may be rollback of etcd v3 API,
        # where we need 3.0.* image, but are rolling back to 2.3.7.
        if [ -n "${ETCD_VERSION:-}" ]; then
          cat >>"$file" <<EOF
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

                      command:
                      - pilot-agent
                      - wait
              {{- else if $nativeSidecar }}
                {{- /* preStop is called when the pod starts shutdown. Initialize drain. We will get SIGTERM once applications are torn down. */}}
                lifecycle:
                  preStop:
                    exec:
                      command:
                      - pilot-agent
                      - request
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  10. cmd/bucket-replication.go

    	client := &http.Client{
    		Transport: globalRemoteTargetTransport,
    		Timeout:   10 * time.Second,
    	}
    
    	resp, err := client.Do(req)
    	if err != nil {
    		return err
    	}
    	if err == nil {
    		// Drain the connection.
    		xhttp.DrainBody(resp.Body)
    	}
    	if resp != nil {
    		amzid := resp.Header.Get(xhttp.AmzRequestHostID)
    		if _, ok := globalNodeNamesHex[amzid]; ok {
    			return BucketRemoteIdenticalToSource{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top