Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for noppad (0.1 sec)

  1. src/cmd/internal/obj/x86/asm6.go

    	if pjc == 0 {
    		return c
    	}
    
    	var toPad int32
    	fj, fjSize := fusedJump(p)
    	mask := int32(pjc - 1)
    	if fj {
    		if (c&mask)+int32(fjSize) >= int32(pjc) {
    			toPad = int32(pjc) - (c & mask)
    		}
    	} else if isJump(p) {
    		if (c&mask)+int32(p.Isize) >= int32(pjc) {
    			toPad = int32(pjc) - (c & mask)
    		}
    	}
    	if toPad <= 0 {
    		return c
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			jobCreationTime:            justAfterThePriorHour(),
    			now:                        justBeforeTheHour(),
    			expectedWarnings:           1,
    			jobPresentInCJActiveStatus: true,
    		},
    		"never ran, not valid time zone": {
    			concurrencyPolicy:          "Allow",
    			schedule:                   onTheHour,
    			timeZone:                   &errorTimeZone,
    			deadline:                   noDead,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/debug/debug_test.cc

    #include "tsl/platform/env.h"
    #include "tsl/platform/path.h"
    #include "tsl/platform/status.h"
    
    namespace tensorflow {
    namespace debug_test {
    
    class NopPass : public mlir::PassWrapper<NopPass, mlir::OperationPass<>> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(NopPass)
    
      void runOnOperation() override {}
    };
    
    class MutatePass : public mlir::PassWrapper<MutatePass, mlir::OperationPass<>> {
     public:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 11:15:16 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/runtime/mspanset.go

    		if block != nil {
    			// Check the popped value.
    			if block.popped.Load() == 0 {
    				// popped should never be zero because that means we have
    				// pushed at least one value but not yet popped if this
    				// block pointer is not nil.
    				throw("span set block with unpopped elements found in reset")
    			}
    			if block.popped.Load() == spanSetBlockEntries {
    				// popped should also never be equal to spanSetBlockEntries
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    		}
    
    		// write hash directly into out if possible
    		if len(out)%s.rate == 0 {
    			klmd(s.function|nopad, &s.a, out, nil)
    			return
    		}
    
    		// write hash into buffer
    		s.resetBuf()
    		if cap(s.buf) > len(out) {
    			s.buf = s.buf[:(len(out)/s.rate)*s.rate+s.rate]
    		}
    		klmd(s.function|nopad, &s.a, s.buf, nil)
    	}
    	return
    }
    
    // Sum appends the current hash to b and returns the resulting slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

                                    test("throwsExceptionWhenPopped()") {
                                        operationDisplayName "throws EmptyStackException when popped"
                                        testDisplayName "throws EmptyStackException when popped"
                                    }
                                    testClass("org.example.TestingAStackDemo\$WhenNew\$AfterPushing") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	// Simulate a pod being popped by the scheduler,
    	// At this time, unschedulable pod should be popped.
    	p1, err := q.Pop(logger)
    	if err != nil {
    		t.Errorf("Error while popping the head of the queue: %v", err)
    	}
    	if p1.Pod != unschedulablePod {
    		t.Errorf("Expected that test-pod-unscheduled was popped, got %v", p1.Pod.Name)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/FileSystemSnapshotSerializer.java

            }
    
            public List<FileSystemLocationSnapshot> pop() {
                List<FileSystemLocationSnapshot> popped = stack.pollLast();
                if (popped == null) {
                    throw new IllegalStateException("Stack empty");
                }
                return popped;
            }
        }
    
        private static String toAbsolutePath(Collection<String> parents, String fileName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 15:45:55 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_interval.go

    // source can change over time - i.e. for watchCache circular
    // buffer. When the circular buffer is full and an event needs
    // to be popped off, watchCache::startIndex is incremented. In
    // this case, an interval tracking that popped event is valid
    // only if it has already been copied to its internal buffer.
    // However, for efficiency we perform that lazily and we mark
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/cases/map.go

    	upperFunc = []struct {
    		upper mapFunc
    		span  spanFunc
    	}{
    		{nil, nil},                  // und
    		{nil, nil},                  // af
    		{aztrUpper(upper), isUpper}, // az
    		{elUpper, noSpan},           // el
    		{ltUpper(upper), noSpan},    // lt
    		{nil, nil},                  // nl
    		{aztrUpper(upper), isUpper}, // tr
    	}
    
    	undUpper            transform.SpanningTransformer = &undUpperCaser{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top