Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 933 for Parses (0.13 sec)

  1. src/os/user/user.go

    Package user allows user account lookups by name or id.
    
    For most Unix systems, this package has two internal implementations of
    resolving user and group ids to names, and listing supplementary group IDs.
    One is written in pure Go and parses /etc/passwd and /etc/group. The other
    is cgo-based and relies on the standard C library (libc) routines such as
    getpwuid_r, getgrnam_r, and getgrouplist.
    
    When cgo is available, and the required routines are implemented in libc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. pkg/volume/util/fsquota/common/quota_common_linux.go

    // XXXXXXX Need a better way of doing this...
    var FirstQuota QuotaID = 1048577
    
    // MountsFile is the location of the system mount data
    var MountsFile = "/proc/self/mounts"
    
    // MountParseRegexp parses out /proc/sys/self/mounts
    var MountParseRegexp = regexp.MustCompilePOSIX("^([^ ]*)[ \t]*([^ ]*)[ \t]*([^ ]*)") // Ignore options etc.
    
    // LinuxVolumeQuotaProvider returns an appropriate quota applier
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 28 06:09:31 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. docs/sts/client-grants.go

    	"crypto/tls"
    	"encoding/json"
    	"flag"
    	"fmt"
    	"log"
    	"net/http"
    	"net/url"
    	"strings"
    
    	minio "github.com/minio/minio-go/v7"
    	"github.com/minio/minio-go/v7/pkg/credentials"
    )
    
    // JWTToken - parses the output from IDP id_token.
    type JWTToken struct {
    	AccessToken string `json:"access_token"`
    	Expiry      int    `json:"expires_in"`
    }
    
    var (
    	stsEndpoint  string
    	idpEndpoint  string
    	clientID     string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/logging/src/main/java/org/gradle/util/GradleVersion.java

         *
         * @return The current Gradle version.
         */
        public static GradleVersion current() {
            return DefaultGradleVersion.current();
        }
    
        /**
         * Parses the given string into a GradleVersion.
         *
         * @throws IllegalArgumentException On unrecognized version string.
         */
        public static GradleVersion version(String version) throws IllegalArgumentException {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/notations/DependencyClassPathNotationConverterTest.groovy

        }
    
        def "parses classpath literal"() {
            when:
            def out = parse(GRADLE_API)
    
            then:
            out instanceof DefaultFileCollectionDependency
            out.files as List == [shadedApiJar] + localGroovyFiles + installationBeaconFiles
        }
    
        def "reuses dependency instances"() {
            when:
            def out = parse(GRADLE_API)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  6. pkg/test/util/tmpl/evaluate.go

    package tmpl
    
    import (
    	"fmt"
    
    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/file"
    )
    
    // Evaluate parses the template and then executes it with the given parameters.
    func Evaluate(tpl string, data any) (string, error) {
    	t, err := Parse(tpl)
    	if err != nil {
    		return "", err
    	}
    
    	return Execute(t, data)
    }
    
    func EvaluateFile(filePath string, data any) (string, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model_test.cc

    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Block.h"  // from @llvm-project
    #include "mlir/IR/MLIRContext.h"  // from @llvm-project
    #include "mlir/Parser/Parser.h"  // from @llvm-project
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    #include "mlir/Support/LogicalResult.h"  // from @llvm-project
    #include "tensorflow/core/platform/test.h"
    
    namespace mlir {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 01 05:03:09 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/dirent.go

    			uint64(b[4])<<32 | uint64(b[5])<<40 | uint64(b[6])<<48 | uint64(b[7])<<56
    	default:
    		panic("syscall: readInt with unsupported size")
    	}
    }
    
    // ParseDirent parses up to max directory entries in buf,
    // appending the names to names. It returns the number of
    // bytes consumed from buf, the number of entries added
    // to names, and the new names slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. pkg/test/echo/client.go

    	resp, err := c.client.Echo(ctx, request)
    	if err != nil {
    		return Response{}, err
    	}
    	return parseResponse(resp.Message), nil
    }
    
    // ForwardEcho sends the given forward request and parses the response for easier processing. Only fails if the request fails.
    func (c *Client) ForwardEcho(ctx context.Context, request *proto.ForwardEchoRequest) (Responses, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 20:23:34 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/structtag/structtag.go

    	errTagValueSpace  = errors.New("suspicious space in struct tag value")
    	errTagSpace       = errors.New("key:\"value\" pairs not separated by spaces")
    )
    
    // validateStructTag parses the struct tag and returns an error if it is not
    // in the canonical format, which is a space-separated list of key:"value"
    // settings. The value may contain spaces.
    func validateStructTag(tag string) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top