Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 153 for myname (0.11 sec)

  1. tensorflow/compiler/jit/encapsulate_xla_computations_pass.cc

        bool b_is_resource = (b->output_type(0) == DT_RESOURCE);
        // Uses the name as a tiebreaker so the output is deterministic.
        StringPiece a_name(a->name());
        StringPiece b_name(b->name());
        return std::tie(a_is_resource, a_name) < std::tie(b_is_resource, b_name);
      });
    
      // Sorts the retvals by name so the order is deterministic.
      std::sort(retvals.begin(), retvals.end(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/schema/FqName.kt

     * limitations under the License.
     */
    
    package org.gradle.declarative.dsl.schema
    
    import java.io.Serializable
    
    
    interface FqName : Serializable {
        val packageName: String
        val simpleName: String
        val qualifiedName: String
    
        companion object Empty : FqName {
            override val packageName: String
                get() = ""
            override val simpleName: String
                get() = ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. pilot/pkg/xds/deltatest.go

    	deleted := sets.New(resp.RemovedResources...)
    	byName := map[string]*discovery.Resource{}
    	for _, v := range resp.Resources {
    		byName[v.Name] = v
    	}
    	res := model.Resources{}
    	for _, m := range message {
    		if deleted.Contains(m.Name) {
    			continue
    		}
    		if replaced := byName[m.Name]; replaced != nil {
    			res = append(res, replaced)
    			delete(byName, m.Name)
    			continue
    		}
    		res = append(res, m)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/dwtest/dwtest.go

    		ex.dies = append(ex.dies, entry)
    		if _, found := ex.idxByOffset[entry.Offset]; found {
    			return errors.New("DIE clash on offset")
    		}
    		ex.idxByOffset[entry.Offset] = idx
    		if name, ok := entry.Val(dwarf.AttrName).(string); ok {
    			ex.byname[name] = append(ex.byname[name], idx)
    		}
    		if len(nesting) > 0 {
    			parent := nesting[len(nesting)-1]
    			ex.kids[parent] = append(ex.kids[parent], idx)
    			ex.parent[idx] = parent
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 15:22:18 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. manifests/addons/dashboards/istio-mesh-dashboard.json

              {
                "matcher": {
                  "id": "byName",
                  "options": "Time"
                },
                "properties": [
                  {
                    "id": "custom.hidden",
                    "value": true
                  }
                ]
              },
              {
                "matcher": {
                  "id": "byName",
                  "options": "Value #A"
                },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 02:28:01 UTC 2024
    - 46.4K bytes
    - Viewed (0)
  6. pkg/controller/clusterroleaggregation/clusterroleaggregation_controller.go

    			return
    		}
    		c.queue.Add(key)
    	}
    }
    
    type byName []*rbacv1.ClusterRole
    
    func (a byName) Len() int           { return len(a) }
    func (a byName) Swap(i, j int)      { a[i], a[j] = a[j], a[i] }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/x86/pcrelative_test.go

    package main
    
    func testASM()
    
    func main() {
    	testASM()
    }
    `
    
    func objdumpOutput(t *testing.T, mname, source string) []byte {
    	tmpdir, err := os.MkdirTemp("", mname)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer os.RemoveAll(tmpdir)
    	err = os.WriteFile(filepath.Join(tmpdir, "go.mod"), []byte(fmt.Sprintf("module %s\n", mname)), 0666)
    	if err != nil {
    		t.Fatal(err)
    	}
    	tmpfile, err := os.Create(filepath.Join(tmpdir, "input.s"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 23:16:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. docs/em/docs/advanced/settings.md

        <div class="termy">
    
        ```console
        // You could create an env var MY_NAME with
        $ export MY_NAME="Wade Wilson"
    
        // Then you could use it with other programs, like
        $ echo "Hello $MY_NAME"
    
        Hello Wade Wilson
        ```
    
        </div>
    
    === "🚪 📋"
    
        <div class="termy">
    
        ```console
        // Create an env var MY_NAME
        $ $Env:MY_NAME = "Wade Wilson"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/compare/comparator.go

    	// See https://github.com/golang/protobuf/issues/747#issuecomment-437463120
    	mname := typeURL
    	if slash := strings.LastIndex(typeURL, "/"); slash >= 0 {
    		mname = mname[slash+1:]
    	}
    	mt, err := protoregistry.GlobalTypes.FindMessageByName(protoreflect.FullName(mname))
    	if err != nil {
    		// istioctl should keep going if it encounters new Envoy versions; ignore unknown types
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. manifests/addons/dashboards/pilot-dashboard.gen.json

                         "id": "byName",
                         "options": "lds"
                      },
                      "properties": [
                         {
                            "id": "displayName",
                            "value": "Listeners"
                         }
                      ]
                   },
                   {
                      "matcher": {
                         "id": "byName",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
Back to top