Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 316 for enter_1 (0.18 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DynamicCallProblemReporting.kt

        }
    
        override fun leaveDynamicCall(entryPoint: Any) {
            val innermostCall = currentThreadState.callStack.pop()
            check(entryPoint == innermostCall.entryPoint) { "Mismatched enter-leave calls in DynamicCallProjectIsolationProblemReporting" }
        }
    
        override fun unreportedProblemInCurrentCall(problemKey: Any): Boolean {
            val currentThreadCallStack = currentThreadState.callStack
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3K bytes
    - Viewed (0)
  2. pilot/pkg/model/typed_xds_cache_test.go

    	push2 := &PushRequest{Start: zeroTime.Add(time.Duration(2))}
    
    	value := &discovery.Resource{Name: "test"}
    
    	// build xds cache
    	c := newTypedXdsCache[uint64]()
    	c.Add(entry1.Key(), entry1, push1, value)
    	c.Add(entry2.Key(), entry2, push2, value)
    
    	// When Flush (or ClearAll) is called, the length of `cache.evictQueue` becomes 0, and we
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 29 20:35:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/SmokeContinuousIntegrationTest.groovy

        def "exit hint does not mention enter when not on windows"() {
            when:
            file("a").touch()
            buildScript "task a { inputs.file 'a'; outputs.file 'b'; doLast {} }"
    
            then:
            succeeds "a"
            output.endsWith("(ctrl-d to exit)\n")
        }
    
        @Requires(UnitTestPreconditions.Windows)
        def "exit hint mentions enter when on windows"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/session/scope/SessionScopeProxyTest.java

            assertNotNull(bean.myBean);
            assertNotSame(bean.myBean.getClass(), MySessionScopedBean.class);
    
            assertThrows(OutOfScopeException.class, () -> bean.myBean.getSession());
    
            sessionScope.enter();
            sessionScope.seed(Session.class, this.session);
            assertNotNull(bean.myBean.getSession());
            assertNotNull(bean.myBean.getAnotherBean());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 12:52:20 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion_test.go

    		func(s *spec.Dependencies, c fuzz.Continue) {
    			enter(s, false, c)
    			defer leave(false)
    
    			// and nothing with invisible==false
    		},
    		func(p *spec.SimpleSchema, c fuzz.Continue) {
    			// gofuzz is broken and calls this even for *SimpleSchema fields, ignoring NilChance, leading to infinite recursion
    			if c.Float64() > nilChance(depth) {
    				return
    			}
    
    			enter(p, true, c)
    			defer leave(true)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotter.java

                }
            }
    
            @Override
            protected FileVisitResult doPreVisitDirectory(Path dir, BasicFileAttributes attrs) {
                String fileName = getInternedFileName(dir);
                pathTracker.enter(fileName);
                if (shouldVisitDirectory(dir, fileName)) {
                    String internedRemappedAbsolutePath = intern(symbolicLinkMapping.remapAbsolutePath(dir));
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 24.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      Node* node = options.FinalizeBuilder(&node_builder);
      // Add any Enter nodes required to bring the constant to the correct control
      // flow frame.
      while (!control_flow_info[src_node->id()].frame_name.empty()) {
        NodeDebugInfo debug_info(*src_node);
        NodeBuilder enter_builder(options.GetNameForOp("Enter"), "Enter",
                                  options.op_registry(), &debug_info);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top