Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 211 for Paging (0.15 sec)

  1. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Try.java

        //  We cannot use this syntax until adopting JSpecify with e.g. Jetbrains Annotations, because IDEA wrongly treats all Try usages as having a nullable type, even when
        //  it is explicitly spelled, e.g.
        //  Try<String> t = Try.successful("some")
        //  t.get().length()  // IDEA produces false positive "potential NPE" warning when JB annotations are used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h.pump

          return new Iterator(*this);
        }
        virtual const ParamType* Current() const { return &current_value_; }
        virtual bool Equals(const ParamIteratorInterface<ParamType>& other) const {
          // Having the same base generator guarantees that the other
          // iterator is of the same type and we can downcast.
          GTEST_CHECK_(BaseGenerator() == other.BaseGenerator())
              << "The program attempted to compare iterators "
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

            return execute(args, null)
        }
    
        ExecOutput execute(List args, List env) {
            def process = ([file.absolutePath] + args).execute(env, null)
    
            // Prevent process from hanging by consuming the output as we go.
            def output = new ByteArrayOutputStream()
            def error = new ByteArrayOutputStream()
    
            Thread outputThread = Thread.start { ByteStreams.copy(process.in, output) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/path-params-numeric-validations.md

        These functions are there (instead of just using the classes directly) so that your editor doesn't mark errors about their types.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jun 01 21:05:52 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. cmd/erasure-healing.go

    			VersionID: versionID,
    		})
    		errs = make([]error, len(errs))
    		if derr == nil {
    			derr = errFileNotFound
    			if versionID != "" {
    				derr = errFileVersionNotFound
    			}
    			// We did find a new danging object
    			return er.defaultHealResult(m, storageDisks, storageEndpoints,
    				errs, bucket, object, versionID), derr
    		}
    		return er.defaultHealResult(m, storageDisks, storageEndpoints,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 33.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            def providerWithSideEffect = Providers.of(someValue()).withSideEffect(sideEffect)
            // `PropertyInternal` does not directly provide these setters,
            // but all user-facing interfaces and their implementations do.
            property."$setter"(providerWithSideEffect)
    
            property.calculateValue(ValueSupplier.ValueConsumer.IgnoreUnsafeRead)
            property.calculateExecutionTimeValue()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  7. src/reflect/abi.go

    			addTypeBits(stackPtrs, stkStep.stkOff, res)
    		} else {
    			for _, st := range out.stepsForValue(i) {
    				if st.kind == abiStepPointer {
    					outRegPtrs.Set(st.ireg)
    				}
    			}
    		}
    	}
    	// Undo the faking from earlier so that stackBytes
    	// is accurate.
    	out.stackBytes -= retOffset
    	return abiDesc{in, out, stackCallArgsSize, retOffset, spill, stackPtrs, inRegPtrs, outRegPtrs}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. src/runtime/preempt.go

    			asyncM = asyncM2
    			asyncGen = asyncGen2
    
    			casfrom_Gscanstatus(gp, _Gscanrunning, _Grunning)
    
    			// Send asynchronous preemption. We do this
    			// after CASing the G back to _Grunning
    			// because preemptM may be synchronous and we
    			// don't want to catch the G just spinning on
    			// its status.
    			if preemptMSupported && debug.asyncpreemptoff == 0 && needAsync {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/reflect/annotations/impl/DefaultTypeAnnotationMetadataStore.java

         * @param ignoredPackagePrefixes Packages to ignore. Types from ignored packages are considered having no type annotations nor any annotated properties.
         * @param ignoredSuperTypes Super-types to ignore. Ignored super-types are considered having no type annotations nor any annotated properties.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:36 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/bigger-applications.md

        * You can also add [`Security` dependencies with `scopes`](../advanced/security/oauth2-scopes.md){.internal-link target=_blank}.
    
    !!! tip
        Having `dependencies` in the `APIRouter` can be used, for example, to require authentication for a whole group of *path operations*. Even if the dependencies are not added individually to each one of them.
    
    !!! check
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top