Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 77 for Name2 (0.05 sec)

  1. src/syscall/zsysnum_netbsd_386.go

    	SYS_LINKAT               = 457 // { int|sys||linkat(int fd1, const char *name1, int fd2, const char *name2, int flags); }
    	SYS_RENAMEAT             = 458 // { int|sys||renameat(int fromfd, const char *from, int tofd, const char *to); }
    	SYS_MKFIFOAT             = 459 // { int|sys||mkfifoat(int fd, const char *path, mode_t mode); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 25.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go

    	SYS_LINKAT               = 457 // { int|sys||linkat(int fd1, const char *name1, int fd2, const char *name2, int flags); }
    	SYS_RENAMEAT             = 458 // { int|sys||renameat(int fromfd, const char *from, int tofd, const char *to); }
    	SYS_MKFIFOAT             = 459 // { int|sys||mkfifoat(int fd, const char *path, mode_t mode); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go

    	SYS_LINKAT               = 457 // { int|sys||linkat(int fd1, const char *name1, int fd2, const char *name2, int flags); }
    	SYS_RENAMEAT             = 458 // { int|sys||renameat(int fromfd, const char *from, int tofd, const char *to); }
    	SYS_MKFIFOAT             = 459 // { int|sys||mkfifoat(int fd, const char *path, mode_t mode); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_2x.md

        API. Requests made with OkUrlFactory will continue to have a default user
        agent.
     *  New: Guava-like API to create headers:
    
        ```java
        Headers headers = Headers.of(name1, value1, name2, value2, ...).
        ```
    
     *  New: Make the content-type header optional for request bodies.
     *  New: `Response.isSuccessful()` is a convenient API to check response codes.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 26.6K bytes
    - Viewed (0)
  5. src/os/os_test.go

    		}
    	}()
    	n, err := io.Copy(io.Discard, file)
    	if err != nil {
    		t.Fatal(err)
    	}
    	return n
    }
    
    func equal(name1, name2 string) (r bool) {
    	switch runtime.GOOS {
    	case "windows":
    		r = strings.EqualFold(name1, name2)
    	default:
    		r = name1 == name2
    	}
    	return
    }
    
    // localTmp returns a local temporary directory not on NFS.
    func localTmp() string {
    	switch runtime.GOOS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

            return this;
        }
    
        public StandardJavadocDocletOptions docFilesSubDirs() {
            return docFilesSubDirs(true);
        }
    
        /**
         * -excludedocfilessubdir name1:name2...
         */
        @Nullable @Optional @Input
        public List<String> getExcludeDocFilesSubDir() {
            return excludeDocFilesSubDir.getValue();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar_test.go

    		}
    		setCookies[i] = cookies[0]
    	}
    	jar.setCookies(mustParseURL(test.fromURL), setCookies, now)
    	now = now.Add(1001 * time.Millisecond)
    
    	// Serialize non-expired entries in the form "name1=val1 name2=val2".
    	var cs []string
    	for _, submap := range jar.entries {
    		for _, cookie := range submap {
    			if !cookie.Expires.After(now) {
    				continue
    			}
    
    			v := cookie.Value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  8. staging/src/k8s.io/cli-runtime/pkg/resource/builder.go

    		return b
    	}
    	b.selectAll = selectAll
    	return b
    }
    
    // ResourceTypeOrNameArgs indicates that the builder should accept arguments
    // of the form `(<type1>[,<type2>,...]|<type> <name1>[,<name2>,...])`. When one argument is
    // received, the types provided will be retrieved from the server (and be comma delimited).
    // When two or more arguments are received, they must be a single type and resource name(s).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 10:17:56 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier_test.go

    		return false
    	}
    	name1, name2 := rule1.Comment.Value, rule2.Comment.Value
    
    	// The service name is the comment up to the first space or colon
    	i := strings.IndexAny(name1, " :")
    	if i != -1 {
    		name1 = name1[:i]
    	}
    	i = strings.IndexAny(name2, " :")
    	if i != -1 {
    		name2 = name2[:i]
    	}
    
    	return name1 < name2
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (1)
  10. src/database/sql/sql_test.go

    	rows, err = db.Query("SELECT|people|name|")
    	if err != nil {
    		t.Fatal(err)
    	}
    	rows.Next()
    	rows.Scan(&raw) // raw points to driver-owned memory again
    	name2 := string(raw)
    	rows.Close()
    	if name1 != name2 {
    		t.Fatalf("Scan read name %q, want %q", name2, name1)
    	}
    }
    
    // badConn implements a bad driver.Conn, for TestBadDriver.
    // The Exec method panics.
    type badConn struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top