Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 109 for enter_0 (0.19 sec)

  1. src/runtime/race/testdata/sync_test.go

    	x = 2
    }
    
    func TestRaceCond(t *testing.T) {
    	done := make(chan bool)
    	var mu sync.Mutex
    	cond := sync.NewCond(&mu)
    	x := 0
    	_ = x
    	condition := 0
    	go func() {
    		time.Sleep(10 * time.Millisecond) // Enter cond.Wait loop
    		x = 1
    		mu.Lock()
    		condition = 1
    		cond.Signal()
    		mu.Unlock()
    		time.Sleep(10 * time.Millisecond) // Exit cond.Wait loop
    		mu.Lock()
    		x = 3
    		mu.Unlock()
    		done <- true
    	}()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 10 15:05:17 UTC 2020
    - 3K bytes
    - Viewed (0)
  2. docs/sts/dex.md

          ],
          "Resource": [
            "arn:aws:s3:::*"
          ]
        }
      ]
    }
    ```
    
    ### Visit <http://localhost:8080>
    
    You will be redirected to dex login screen - click "Login with email", enter username password
    > username: ******@****.***
    > password: password
    
    and then click "Grant access"
    
    On the browser now you shall see the list of buckets output, along with your temporary credentials obtained from MinIO.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. src/cmd/trace/threadgen.go

    	if to == trace.GoSyscall {
    		start := ev.Time()
    		if from == trace.GoUndetermined {
    			// Back-date the event to the start of the trace.
    			start = ctx.startTime
    		}
    		// Write down that we've entered a syscall. Note: we might have no P here
    		// if we're in a cgo callback or this is a transition from GoUndetermined
    		// (i.e. the G has been blocked in a syscall).
    		gs.syscallBegin(start, ev.Thread(), ev.Stack())
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. .github/PULL_REQUEST_TEMPLATE.md

    -->
    Fixes #
    
    #### Special notes for your reviewer:
    
    #### Does this PR introduce a user-facing change?
    <!--
    If no, just write "NONE" in the release-note block below.
    If yes, a release note is required:
    Enter your extended release note in the block below. If the PR requires additional action from users switching to the new release, include the string "action required".
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 01 08:59:21 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  5. src/runtime/cgo/libcgo.h

    #elif defined(__SANITIZE_THREAD__)
    # define CGO_TSAN
    #endif
    
    #ifdef CGO_TSAN
    
    // These must match the definitions in yesTsanProlog in cmd/cgo/out.go.
    // In general we should call _cgo_tsan_acquire when we enter C code,
    // and call _cgo_tsan_release when we return to Go code.
    // This is only necessary when calling code that might be instrumented
    // by TSAN, which mostly means system library calls that TSAN intercepts.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. plugin/pkg/admission/eventratelimit/apis/eventratelimit/v1alpha1/types.go

    	// is evicted from the cache, then the allowance for that bucket is reset. If
    	// more queries are later received for an evicted bucket, then that bucket
    	// will re-enter the cache with a clean slate, giving that bucket a full
    	// allowance of burst queries.
    	//
    	// The default cache size is 4096.
    	//
    	// If limitType is 'server', then cacheSize is ignored.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 17:38:03 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  7. tools/gen_istio_image_list.sh

                 display_usage
              else
                 if [[ "$2" =~ [0-9]+\.[0-9]+\.[0-9]+ ]];
                 then
                    CURRENT_RELEASE="$2"
                 else
                    echo
                    echo "Enter a valid Istio release [<major>.<minor>.<LTS patch level>]"
                    echo
                    exit 1
                 fi
              fi
              shift 2;;
          -h|--help )
              display_usage ;;
          * )
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 25 04:04:35 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/teamcity.adoc

    On the *Administration | Projects* page click _Create project_,
    use the option _From the repository URL_ and enter the URL of the GitHub repository: `https://github.com/gradle/gradle-site-plugin.git`.
    
    image::ci-systems/teamcity-create-project.png[]
    
    
    Follow the _Create Project_ wizard,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

            private final Map<Key<?>, Object> provided = new HashMap<>();
        }
    
        private final ThreadLocal<LinkedList<ScopeState>> values = new ThreadLocal<>();
    
        public MojoExecutionScope() {}
    
        public void enter() {
            LinkedList<ScopeState> stack = values.get();
            if (stack == null) {
                stack = new LinkedList<>();
                values.set(stack);
            }
            stack.addFirst(new ScopeState());
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/internal/trace/parser.go

    	EvGoBlockCond       = 26 // goroutine blocks on Cond [timestamp, stack]
    	EvGoBlockNet        = 27 // goroutine blocks on network [timestamp, stack]
    	EvGoSysCall         = 28 // syscall enter [timestamp, stack]
    	EvGoSysExit         = 29 // syscall exit [timestamp, goroutine id, seq, real timestamp]
    	EvGoSysBlock        = 30 // syscall blocks [timestamp]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:31:04 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top