Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 100 for tid1 (0.04 sec)

  1. pilot/pkg/security/authz/builder/builder_test.go

    		},
    		{
    			name:     "trust-domain-one-alias",
    			tdBundle: trustdomain.NewBundle("td1", []string{"cluster.local"}),
    			input:    "simple-policy-td-aliases-in.yaml",
    			want:     []string{"simple-policy-td-aliases-out.yaml"},
    		},
    		{
    			name:     "trust-domain-multiple-aliases",
    			tdBundle: trustdomain.NewBundle("td1", []string{"cluster.local", "some-td"}),
    			input:    "simple-policy-multiple-td-aliases-in.yaml",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	reconciler := NewReconciler(
    		reconcilerLoopPeriod, maxWaitForUnmountDuration, syncLoopPeriod, false, false, dsw, asw, ad, nsu, nodeLister, fakeRecorder)
    	podName1 := "pod-uid1"
    	podName2 := "pod-uid2"
    	volumeName := v1.UniqueVolumeName("volume-name")
    	volumeSpec := controllervolumetesting.GetTestVolumeSpec(string(volumeName), volumeName)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  3. src/syscall/exec_linux.go

    	CLONE_PARENT_SETTID  = 0x00100000 // set the TID in the parent
    	CLONE_CHILD_CLEARTID = 0x00200000 // clear the TID in the child
    	CLONE_DETACHED       = 0x00400000 // Unused, ignored
    	CLONE_UNTRACED       = 0x00800000 // set if the tracing process can't force CLONE_PTRACE on this clone
    	CLONE_CHILD_SETTID   = 0x01000000 // set the TID in the child
    	CLONE_NEWCGROUP      = 0x02000000 // New cgroup namespace
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modload/init.go

    		return fmt.Sprintf("updates to go.mod needed, disabled by -mod=%v; to update it:\n\tgo mod tidy", cfg.BuildMod)
    	}
    	if cfg.BuildModReason != "" {
    		return fmt.Sprintf("updates to go.mod needed, disabled by -mod=%s\n\t(%s)\n\tto update it:\n\tgo mod tidy", cfg.BuildMod, cfg.BuildModReason)
    	}
    	return "updates to go.mod needed; to update it:\n\tgo mod tidy"
    }
    
    var errGoModDirty error = goModDirtyError{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  5. doc/next/3-tools.md

    those settings whose effective value differs from the default value
    that would be obtained in an empty environment with no prior uses of the `-w` flag.
    
    <!-- go.dev/issue/27005, CL 585401 -->
    The new `go` `mod` `tidy` `-diff` flag causes the command not to modify
    the files but instead print the necessary changes as a unified diff.
    It exits with a non-zero code if updates are needed.
    
    <!-- go.dev/issue/52792, CL 562775 -->
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 19:06:07 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/runtime/os_openbsd_syscall2.go

    func kqueue() int32
    
    //go:noescape
    func kevent(kq int32, ch *keventt, nch int32, ev *keventt, nev int32, ts *timespec) int32
    
    func raiseproc(sig uint32)
    
    func getthrid() int32
    func thrkill(tid int32, sig int)
    
    // read calls the read system call.
    // It returns a non-negative number of bytes written or a negative errno value.
    func read(fd int32, p unsafe.Pointer, n int32) int32
    
    func closefd(fd int32) int32
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. CONTRIBUTING.md

    #### C++ coding style
    
    Changes to TensorFlow C++ code should conform to
    [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html).
    
    Use `clang-tidy` to check your C/C++ changes. To install `clang-tidy` on ubuntu:16.04, do:
    
    ```bash
    apt-get install -y clang-tidy
    ```
    
    You can check a C/C++ file by doing:
    
    
    ```bash
    clang-format <my_cc_file> --style=google > /tmp/my_cc_file.cc
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. src/runtime/os_linux.go

    	ret := retryOnEAGAIN(func() int32 {
    		r := clone(cloneFlags, stk, unsafe.Pointer(mp), unsafe.Pointer(mp.g0), unsafe.Pointer(abi.FuncPCABI0(mstart)))
    		// clone returns positive TID, negative errno.
    		// We don't care about the TID.
    		if r >= 0 {
    			return 0
    		}
    		return -r
    	})
    	sigprocmask(_SIG_SETMASK, &oset, nil)
    
    	if ret != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  9. tensorflow/cc/saved_model/fingerprinting_utils.cc

    using ::tensorflow::protobuf::Map;
    using ::tensorflow::protobuf::Message;
    using ::tensorflow::protobuf::RepeatedPtrField;
    // NOLINTNEXTLINE: clang-tidy missing-includes false positive
    using ::tensorflow::protobuf::io::CodedOutputStream;
    // NOLINTNEXTLINE: clang-tidy missing-includes false positive
    using ::tensorflow::protobuf::io::StringOutputStream;
    
    absl::StatusOr<int> fieldTagMatches(const RepeatedPtrField<FieldIndex>& a,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/DerivedCollectionGenerators.java

        }
    
        @Override
        public OneSizeTestContainerGenerator<Map<K, V>, Entry<K, V>> getInnerGenerator() {
          return mapGenerator;
        }
      }
    
      // TODO: investigate some API changes to SampleElements that would tidy up
      // parts of the following classes.
    
      static <K extends @Nullable Object, V extends @Nullable Object>
          TestSetGenerator<K> keySetGenerator(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top