Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 312 for wall (0.05 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    // setfsgid(2) will return a non-nil error only if its caller lacks CAP_SETUID capability.
    // If the call fails due to other reasons, current fsgid will be returned.
    func SetfsgidRetGid(gid int) (int, error) {
    	return setfsgid(gid)
    }
    
    // SetfsuidRetUid sets fsuid for current thread and returns previous fsuid set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go

    	num  syscall.Errno
    	name string
    	desc string
    }{
    	{1, "EPERM", "not owner"},
    	{2, "ENOENT", "no such file or directory"},
    	{3, "ESRCH", "no such process"},
    	{4, "EINTR", "interrupted system call"},
    	{5, "EIO", "I/O error"},
    	{6, "ENXIO", "no such device or address"},
    	{7, "E2BIG", "arg list too long"},
    	{8, "ENOEXEC", "exec format error"},
    	{9, "EBADF", "bad file number"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 52.4K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    	// and we can extend that mechanism to work for all other equal variant registrations.
    	// Do the simple thing to start with.
    	for _, pkg := range test.packages() {
    		test1 := *test
    		test1.pkg, test1.pkgs = pkg, nil
    		register1(&test1)
    	}
    }
    
    // dirCmd constructs a Cmd intended to be run in the foreground.
    // The command will be run in dir, and Stdout and Stderr will go to os.Stdout
    // and os.Stderr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// If a request with the dry-run attribute would trigger a call to this webhook, the request will instead fail.
    	SideEffectClassUnknown SideEffectClass = "Unknown"
    	// SideEffectClassNone means that calling the webhook will have no side effects.
    	SideEffectClassNone SideEffectClass = "None"
    	// SideEffectClassSome means that calling the webhook will possibly have side effects.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  5. src/go/build/build.go

    		if ctxt.isDir(dir) {
    			all = append(all, dir)
    		}
    	}
    	for _, p := range ctxt.gopath() {
    		dir := ctxt.joinPath(p, "src")
    		if ctxt.isDir(dir) {
    			all = append(all, dir)
    		}
    	}
    	return all
    }
    
    // Default is the default Context for builds.
    // It uses the GOARCH, GOOS, GOROOT, and GOPATH environment variables
    // if set, or else the compiled code's GOARCH, GOOS, and GOROOT.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    As a consequence, the `verification-metadata.xml` file will be used in subsequent builds to verify dependencies.
    
    --
    There are dependencies that Gradle _cannot_ discover this way.
    In particular, you will notice that the CLI above uses the `help` task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      //        prior to the op, and all references to these are replaced by the
      //        corresponding slot argument. We need to generate writes following
      //        the while for these resources.
      //
      // Note that for WhileRegion ops, if a resource is written, it will be written
      // only in the body and not the condition, so the hoister analysis will infer
      // it as needing a read as well.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/bufio/bufio_test.go

    		line, isPrefix, err := b.ReadLine()
    		if !bytes.Equal(line, e.line) {
    			t.Errorf("%q call %d, line == %q, want %q", input, i, line, e.line)
    			return
    		}
    		if isPrefix != e.isPrefix {
    			t.Errorf("%q call %d, isPrefix == %v, want %v", input, i, isPrefix, e.isPrefix)
    			return
    		}
    		if err != e.err {
    			t.Errorf("%q call %d, err == %v, want %v", input, i, err, e.err)
    			return
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    		name         string
    		kmsv1Enabled bool
    		expectedErr  string
    	}{
    		{
    			name:         "config with kmsv1, KMSv1=false",
    			kmsv1Enabled: false,
    			expectedErr:  "KMSv1 is deprecated and will only receive security updates going forward. Use KMSv2 instead.  Set --feature-gates=KMSv1=true to use the deprecated KMSv1 feature.",
    		},
    		{
    			name:         "config with kmsv1, KMSv1=true",
    			kmsv1Enabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Requests with the dryRun attribute will be auto-rejected if they match a webhook with
    	// sideEffects == Unknown or Some.
    	SideEffects *SideEffectClass `json:"sideEffects" protobuf:"bytes,6,opt,name=sideEffects,casttype=SideEffectClass"`
    
    	// TimeoutSeconds specifies the timeout for this webhook. After the timeout passes,
    	// the webhook call will be ignored or the API call will fail based on the
    	// failure policy.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
Back to top