Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 99 for problem (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		clk:                         clk,
    		counter:                     counter,
    		seatDemandIntegratorSubject: seatDemandIntegratorSubject,
    	}.exercise(t)
    }
    
    // TestSeatSecondsRollover checks that there is not a problem with SeatSeconds overflow.
    func TestSeatSecondsRollover(t *testing.T) {
    	metrics.Register()
    	now := time.Now()
    
    	const Quarter = 91 * 24 * time.Hour
    
    	clk, counter := testeventclock.NewFake(now, 0, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/CacheBuilder.java

       *   ClassLoader that is sometimes used as a system classloader. That's a problem because
       *   method-reference linking tries to look up the system classloader, and it fails because there
       *   isn't one yet.
       *
       * - lambda: Outside Google, we got a report of a similar problem in
       *   https://github.com/google/guava/issues/6565
       */
      @SuppressWarnings("AnonymousToLambda")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

                        }
                    }
                }
    
                configurations.conf.incoming.afterResolve {
                    // afterResolve will trigger the problem when reading
                    it.resolutionResult.allComponents {
                        println "Success for \${it.id}"
                    }
                }
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

        assertThat(server.takeRequest().sequenceNumber).isEqualTo(1) // New connection.
      }
    
      /**
       * We had a bug where we'd perform infinite retries of route that fail with connection shutdown
       * errors. The problem was that the logic that decided whether to reuse a route didn't track
       * certain HTTP/2 errors. https://github.com/square/okhttp/issues/5547
       */
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 75.3K bytes
    - Viewed (0)
  5. src/crypto/tls/conn.go

    			// sequence number as the nonce. The 3DES-CBC construction also has
    			// an 8 bytes nonce but its nonces must be unpredictable (see RFC
    			// 5246, Appendix F.3), forcing us to use randomness. That's not
    			// 3DES' biggest problem anyway because the birthday bound on block
    			// collision is reached first due to its similarly small block size
    			// (see the Sweet32 attack).
    			copy(explicitNonce, hc.seq[:])
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		// arg2 = mem
    		// returns mem
    		//	STP.P	(ZR,ZR), 16(R16)
    		//	CMP	Rarg1, R16
    		//	BLE	-2(PC)
    		// Note: the-end-of-the-memory may be not a valid pointer. it's a problem if it is spilled.
    		// the-end-of-the-memory - 16 is with the area to zero, ok to spill.
    		{
    			name:      "LoweredZero",
    			argLength: 3,
    			reg: regInfo{
    				inputs:   []regMask{buildReg("R16"), gp},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  7. src/cmd/internal/testdir/testdir_test.go

    }
    
    func (test) goGcflagsIsEmpty() bool {
    	return "" == os.Getenv("GO_GCFLAGS")
    }
    
    var errTimeout = errors.New("command exceeded time limit")
    
    // run runs the test case.
    //
    // When there is a problem, run uses t.Fatal to signify that it's an unskippable
    // infrastructure error (such as failing to read an input file or the test recipe
    // being malformed), or it returns a non-nil error to signify a test case error.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

                        } catch (ServiceLookupException e) {
                            throw new ServiceCreationException(String.format("Cannot create service of type %s using %s as there is a problem with parameter #%s of type %s.",
                                format(serviceType),
                                getFactoryDisplayName(),
                                i + 1,
                                format(paramType)), e);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. src/cmd/cgo/out.go

    		// -fsplit-stack, then the linker will think that it
    		// needs to adjust the split stack prologue, but there
    		// won't be one. Marking the function explicitly
    		// no_split_stack works around this problem by telling
    		// the linker that it's OK if there is no split stack
    		// prologue.
    		fmt.Fprintln(fc, "static void init(void) __attribute__ ((constructor, no_split_stack));")
    		fmt.Fprintln(fc, "static void init(void) {")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

        public ProjectInternal bindAllModelRules() {
            try {
                getModelRegistry().bindAllReferences();
            } catch (Exception e) {
                throw new ProjectConfigurationException(String.format("A problem occurred configuring %s.", getDisplayName()), e);
            }
            return this;
        }
    
        @Override
        public TaskContainerInternal getTasks() {
            return taskContainer;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
Back to top