Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for defn (1.16 sec)

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

      // PrepareConvert needs to ensure that the original `graph` is cloned prior
      // execution. The cloning procedure relies on the roundtrip through the
      // GraphDef. Graph to GraphDef def conversion is heavy, in case, `graph_def`
      // was obtained previously provide it to the PrepareConvert to reuse.
      Status PrepareConvert(const Graph& graph,
                            std::unique_ptr<GraphDef> graph_def = nullptr);
    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. pkg/proxy/nftables/proxier_test.go

    			expected: "5YS7AFEA-very-long-namespace-name-abcdefghijklmnopqrstuvwxyz0123456789xx/very-long-service-name-why-would-you-even-do-this-i-mean-really/sctp/port-443-providing-the-hypertext-transmission-protocol-with-tls__1234.5678.9abc.def0..abc.1234/443",
    		},
    		{
    			name: "truncated, 1",
    			spn: proxy.ServicePortName{
    				NamespacedName: types.NamespacedName{
    					Namespace: "very-long-namespace-name-abcdefghijklmnopqrstuvwxyz0123456789xx",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 173.5K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    //
    // The environment variable must be quoted correctly for
    // quoted.Split. This should be done before building
    // anything, for example, in BuildInit.
    func envList(key, def string) []string {
    	v := cfg.Getenv(key)
    	if v == "" {
    		v = def
    	}
    	args, err := quoted.Split(v)
    	if err != nil {
    		panic(fmt.Sprintf("could not parse environment variable %s with value %q: %v", key, v, err))
    	}
    	return args
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // OwnProvider GmbH: http://www.ownprovider.com
    // Submitted by Jan Moennich <******@****.***>
    ownprovider.com
    own.pm
    
    // OwO : https://whats-th.is/
    // Submitted by Dean Sheather <dean@deansheather.com>
    *.owo.codes
    
    // OX : http://www.ox.rs
    // Submitted by Adam Grand <******@****.***>
    ox.rs
    
    // oy.lc
    // Submitted by Charly Coste <******@****.***>
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  5. src/reflect/all_test.go

    			t.Errorf("constructed struct %v not equal to itself", v1.Interface())
    		}
    
    		v1.FieldByIndex(table.idx).Set(ValueOf("abc"))
    		v2.FieldByIndex(table.idx).Set(ValueOf("def"))
    		if i1, i2 := v1.Interface(), v2.Interface(); DeepEqual(i1, i2) {
    			t.Errorf("constructed structs %v and %v should not be equal", i1, i2)
    		}
    
    		abc := "abc"
    		v1.FieldByIndex(table.idx).Set(ValueOf(abc))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top