Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for qsub (0.04 sec)

  1. src/io/fs/sub.go

    )
    
    // A SubFS is a file system with a Sub method.
    type SubFS interface {
    	FS
    
    	// Sub returns an FS corresponding to the subtree rooted at dir.
    	Sub(dir string) (FS, error)
    }
    
    // Sub returns an [FS] corresponding to the subtree rooted at fsys's dir.
    //
    // If dir is ".", Sub returns fsys unchanged.
    // Otherwise, if fs implements [SubFS], Sub returns fsys.Sub(dir).
    // Otherwise, Sub returns a new [FS] implementation sub that,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/ppc64/anames.go

    	"FNABS",
    	"FNABSCC",
    	"FNEG",
    	"FNEGCC",
    	"FNMADD",
    	"FNMADDCC",
    	"FNMADDS",
    	"FNMADDSCC",
    	"FNMSUB",
    	"FNMSUBCC",
    	"FNMSUBS",
    	"FNMSUBSCC",
    	"FRSP",
    	"FRSPCC",
    	"FSUB",
    	"FSUBCC",
    	"FSUBS",
    	"FSUBSCC",
    	"ISEL",
    	"MOVMW",
    	"LBAR",
    	"LHAR",
    	"LSW",
    	"LWAR",
    	"LWSYNC",
    	"MOVDBR",
    	"MOVWBR",
    	"MOVB",
    	"MOVBU",
    	"MOVBZ",
    	"MOVBZU",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. src/io/fs/sub_test.go

    		}
    	}
    
    	// Test that Sub uses the method when present.
    	sub, err := Sub(subOnly{testFsys}, "sub")
    	check("subOnly", sub, err)
    
    	// Test that Sub uses Open when the method is not present.
    	sub, err = Sub(openOnly{testFsys}, "sub")
    	check("openOnly", sub, err)
    
    	_, err = sub.Open("nonexist")
    	if err == nil {
    		t.Fatal("Open(nonexist): succeeded")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 10 02:10:17 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/http/httpguts/httplex.go

    	'Y': true, 'Z': true,
    
    	'!':  true, // sub-delims
    	'$':  true, // sub-delims
    	'%':  true, // pct-encoded (and used in IPv6 zones)
    	'&':  true, // sub-delims
    	'(':  true, // sub-delims
    	')':  true, // sub-delims
    	'*':  true, // sub-delims
    	'+':  true, // sub-delims
    	',':  true, // sub-delims
    	'-':  true, // unreserved
    	'.':  true, // unreserved
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  5. security/pkg/server/ca/authenticate/oidc_test.go

    	token, err := generateJWT(&key, []byte(claims))
    	if err != nil {
    		t.Fatalf("failed to generate JWT: %v", err)
    	}
    	// Create an expired JWT token
    	expiredStr := strconv.FormatInt(time.Now().Add(-time.Hour).Unix(), 10)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/help/help.go

    		}
    		tmpl(&commentWriter{W: w}, documentationTemplate, cmds)
    		fmt.Fprintln(w, "package main")
    		return
    	}
    
    	cmd := base.Go
    Args:
    	for i, arg := range args {
    		for _, sub := range cmd.Commands {
    			if sub.Name() == arg {
    				cmd = sub
    				continue Args
    			}
    		}
    
    		// helpSuccess is the help command using as many args as possible that would succeed.
    		helpSuccess := "go help"
    		if i > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. src/go/types/errors.go

    		// It is sufficient to look at the first sub-error only.
    		msg := err.desc[0].msg
    		if strings.Index(msg, "invalid operand") > 0 || strings.Index(msg, "invalid type") > 0 {
    			return
    		}
    	}
    
    	if check.conf._Trace {
    		check.trace(err.posn().Pos(), "ERROR: %s (code = %d)", err.desc[0].msg, err.code)
    	}
    
    	// In go/types, if there is a sub-error with a valid position,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/unsafeptr/unsafeptr.go

    		// pointer in this way. It is also valid to use &^ to round
    		// pointers, usually for alignment."
    		switch x.Op {
    		case token.ADD, token.SUB, token.AND_NOT:
    			// TODO(mdempsky): Match compiler
    			// semantics. ADD allows a pointer on either
    			// side; SUB and AND_NOT don't care about RHS.
    			return isSafeArith(info, x.X) && !isSafeArith(info, x.Y)
    		}
    	}
    
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. cmd/peer-rest-common.go

    	peerRESTPolicy          = "policy"
    	peerRESTUserOrGroup     = "user-or-group"
    	peerRESTUserType        = "user-type"
    	peerRESTIsGroup         = "is-group"
    	peerRESTSignal          = "signal"
    	peerRESTSubSys          = "sub-sys"
    	peerRESTProfiler        = "profiler"
    	peerRESTSize            = "size"
    	peerRESTConcurrent      = "concurrent"
    	peerRESTDuration        = "duration"
    	peerRESTStorageClass    = "storage-class"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/go/constant/example_test.go

    		constant.MakeUint64(42),
    	}
    
    	for i, v := range vs {
    		switch v.Kind() {
    		case constant.Bool:
    			vs[i] = constant.UnaryOp(token.NOT, v, 0)
    
    		case constant.Float:
    			vs[i] = constant.UnaryOp(token.SUB, v, 0)
    
    		case constant.Int:
    			// Use 16-bit precision.
    			// This would be equivalent to ^uint16(v).
    			vs[i] = constant.UnaryOp(token.XOR, v, 16)
    		}
    	}
    
    	for _, v := range vs {
    		fmt.Println(v)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top