Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 121 for jstack (0.21 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          log.get()
              .log(
                  Level.SEVERE,
                  "SafeAtomicHelper is broken!",
                  thrownAtomicReferenceFieldUpdaterFailure);
        }
      }
    
      /** Waiter links form a Treiber stack, in the {@link #waiters} field. */
      private static final class Waiter {
        static final Waiter TOMBSTONE = new Waiter(false /* ignored param */);
    
        @CheckForNull volatile Thread thread;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  2. src/runtime/mbitmap.go

    		// ep's data pointer sometime before this point and it's possible
    		// for that memory to get freed.
    		KeepAlive(ep)
    		return
    	}
    
    	// stack
    	if gp := getg(); gp.m.curg.stack.lo <= uintptr(p) && uintptr(p) < gp.m.curg.stack.hi {
    		found := false
    		var u unwinder
    		for u.initAt(gp.m.curg.sched.pc, gp.m.curg.sched.sp, 0, gp.m.curg, 0); u.valid(); u.next() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  3. pkg/controller/endpoint/endpoints_controller_test.go

    		expectError            bool
    	}{
    		{
    			name:       "v4 service, in a single stack cluster",
    			ipFamilies: ipv4only,
    			service: v1.Service{
    				Spec: v1.ServiceSpec{
    					ClusterIP: "10.0.0.1",
    				},
    			},
    			expectedEndpointFamily: ipv4,
    		},
    		{
    			name:       "v4 service, in a dual stack cluster",
    			ipFamilies: ipv4ipv6,
    			service: v1.Service{
    				Spec: v1.ServiceSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  4. src/regexp/testdata/testregex.c

    				test |= TEST_IGNORE_OVER;
    				continue;
    			case 'p':
    				test |= TEST_IGNORE_POSITION;
    				continue;
    			case 's':
    #ifdef REG_DISCIPLINE
    				if (!(state.stack = stkalloc(stkstd, 0)))
    					fprintf(stderr, "%s: out of space [stack]", unit);
    				state.disc.disc.re_resizef = resizef;
    				state.disc.disc.re_resizehandle = (void*)stkstd;
    #endif
    				continue;
    			case 'x':
    				nonosub = 1;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

      };
      std::set<string> visited;
      std::vector<Work> stack;
      // Seed the processing list with clusters that have no successors.
      for (const auto& cluster : clusters) {
        if (has_successors.find(cluster) == has_successors.end()) {
          stack.push_back({cluster, false});
        }
      }
      while (!stack.empty()) {
        const Work item = stack.back();
        stack.pop_back();
        if (item.leave) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/deadness_analysis.cc

      std::vector<Predicate*> stack;
    
      stack.push_back(p);
      visited.insert(p);
    
      while (!stack.empty()) {
        Predicate* current = stack.back();
        stack.pop_back();
        bool done = func(current);
        if (done) {
          return;
        }
        for (Predicate* op : current->GetOperands()) {
          if (visited.insert(op).second) {
            stack.push_back(op);
          }
        }
      }
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

            return new PriorityQueue<>(c);
        }
    
        /**
         * {@link Stack}の新しいインスタンスを作成して返します。
         *
         * @param <E>
         *            {@link Stack}の要素型
         * @return {@link Stack}の新しいインスタンス
         * @see Stack#Stack()
         */
        public static <E> Stack<E> newStack() {
            return new Stack<>();
        }
    
        /**
         * {@link SynchronousQueue}の新しいインスタンスを作成して返します。
         *
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/riscv/obj.go

    			alignedValue := p.From.Offset
    			v := pcAlignPadLength(pc, alignedValue)
    			pc += int64(v)
    		}
    	}
    	return pc
    }
    
    // stackOffset updates Addr offsets based on the current stack size.
    //
    // The stack looks like:
    // -------------------
    // |                 |
    // |      PARAMs     |
    // |                 |
    // |                 |
    // -------------------
    // |    Parent RA    |   SP on function entry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  9. src/testing/testing.go

    	testName, ok, _ := t.context.match.fullName(&t.common, name)
    	if !ok || shouldFailFast() {
    		return true
    	}
    	// Record the stack trace at the point of this call so that if the subtest
    	// function - which runs in a separate stack - is marked as a helper, we can
    	// continue walking the stack into the parent test.
    	var pc [maxStackLen]uintptr
    	n := runtime.Callers(2, pc[:])
    	t = &T{
    		common: common{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  10. src/main/webapp/css/font-awesome.min.css

    .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270{-webkit-filter:none;filter:none}.fa-stack{display:inline-block;height:2em;line-height:2em;position:relative;vertical-align:middle;width:2.5em}.fa-stack-1x,.fa-stack-2x{left:0;position:absolute;text-align:center;width:100%}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-500px:before{content:"\f26e"}.fa-accessible-icon:before{content:"\f368"}.fa-accusoft:before...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
Back to top