Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for nameA (0.05 sec)

  1. src/cmd/go/alldocs.go

    // such as 'github.com/user/repo'.
    //
    // Packages in a program need not have unique package names,
    // but there are two reserved package names with special meaning.
    // The name main indicates a command, not a library.
    // Commands are built into binaries and cannot be imported.
    // The name documentation indicates documentation for
    // a non-Go program in the directory. Files in package documentation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	exec(t, db, "INSERT|t|id=20,name=?", name)
    
    	err := db.QueryRow("SELECT|t|name|id=?", 10).Scan(&name)
    	if err != nil {
    		t.Fatalf("querying id 10: %v", err)
    	}
    	if name == nil {
    		t.Errorf("id 10's name = nil; want bob")
    	} else if *name != "bob" {
    		t.Errorf("id 10's name = %q; want bob", *name)
    	}
    
    	err = db.QueryRow("SELECT|t|name|id=?", 20).Scan(&name)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	for _, pkg := range pkgs {
    		if pkg.Name == "main" || (pkg.Name == "" && pkg.Error != nil) {
    			treatAsMain[pkg.ImportPath] = true
    			mains = append(mains, pkg)
    			continue
    		}
    
    		if len(pkg.InvalidGoFiles) > 0 { // TODO(#45999): && pkg.Name == "", but currently go/build sets pkg.Name arbitrarily if it is ambiguous.
    			// The package has (or may have) conflicting names, and we can't easily
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. pkg/config/validation/validation_test.go

    							"name",
    						},
    					},
    					Response: &networking.Headers_HeaderOperations{
    						Add: map[string]string{
    							"name": "",
    						},
    						Set: map[string]string{
    							"name": "",
    						},
    						Remove: []string{
    							"name",
    						},
    					},
    				},
    			}},
    		}, valid: true},
    		{name: "empty header name - request add", route: &networking.HTTPRoute{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      }];
      let constructor = "TF::CreateStripTfAttributesPass()";
    }
    
    def NameAnonymousIteratorsPass : Pass<"tf-name-anonymous-iterators", "ModuleOp"> {
      let summary = "Converts anonymous iterators to named iterators";
      let description = [{
          This converts AnonymousIterator ops to Iterator, thus giving them a name.
          For example, this will convert
            %0 = "tf.AnonymousIteratorV3"() {...}
          to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                "type": "string"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	if store == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func DnsNameCompare(name1 *uint16, name2 *uint16) (same bool) {
    	r0, _, _ := syscall.Syscall(procDnsNameCompare_W.Addr(), 2, uintptr(unsafe.Pointer(name1)), uintptr(unsafe.Pointer(name2)), 0)
    	same = r0 != 0
    	return
    }
    
    func DnsQuery(name string, qtype uint16, options uint32, extra *byte, qrs **DNSRecord, pr *byte) (status error) {
    	var _p0 *uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  8. src/html/entity.go

    package html
    
    import "sync"
    
    // All entities that do not end with ';' are 6 or fewer bytes long.
    const longestEntityWithoutSemicolon = 6
    
    // entity is a map from HTML entity names to their values. The semicolon matters:
    // https://html.spec.whatwg.org/multipage/named-characters.html
    // lists both "amp" and "amp;" as two separate entries.
    //
    // Note that the HTML5 list is larger than the HTML4 list at
    // http://www.w3.org/TR/html4/sgml/entities.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/proxier_test.go

    	}
    }
    
    func makeTestEndpointSlice(namespace, name string, sliceNum int, epsFunc func(*discovery.EndpointSlice)) *discovery.EndpointSlice {
    	eps := &discovery.EndpointSlice{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      fmt.Sprintf("%s-%d", name, sliceNum),
    			Namespace: namespace,
    			Labels:    map[string]string{discovery.LabelServiceName: name},
    		},
    	}
    	epsFunc(eps)
    	return eps
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 01:31:57 UTC 2024
    - 186.8K bytes
    - Viewed (0)
  10. tensorflow/c/c_api.cc

          // The operation should fail if the provided name prefix has already been
          // used in this graph
          for (const auto& pair : g->name_map) {
            const string& name = pair.first;
            if ((name == prefix) || absl::StartsWith(name, prefix_cmp)) {
              status->status = InvalidArgument(
                  "prefix [", prefix,
                  "] conflicts with existing node in the graph named [", name, "]");
              return;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top