Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 161 for representing (0.2 sec)

  1. src/unicode/letter.go

    // are the number to add to the code point to reach the code point for a
    // different case for that character. They may be negative. If zero, it
    // means the character is in the corresponding case. There is a special
    // case representing sequences of alternating corresponding Upper and Lower
    // pairs. It appears with a fixed Delta of
    //
    //	{UpperLower, UpperLower, UpperLower}
    //
    // The constant UpperLower has an otherwise impossible delta value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 20:02:46 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. pkg/volume/volume.go

    type Provisioner interface {
    	// Provision creates the resource by allocating the underlying volume in a
    	// storage system. This method should block until completion and returns
    	// PersistentVolume representing the created storage resource.
    	Provision(selectedNode *v1.Node, allowedTopologies []v1.TopologySelectorTerm) (*v1.PersistentVolume, error)
    }
    
    // Deleter removes the resource from the underlying storage provider. Calls
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

         * @param additionalModules The names of any additional modules to load from the Gradle distribution.
         *
         * @return A set of files representing the constructed classpath or modulePath.
         */
        private ImmutableList<File> pathWithAdditionalModules(Iterable<? extends File> testFiles, List<TestFrameworkDistributionModule> additionalModules) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  4. samples/security/spire/spire-quickstart.yaml

                type: string
              kind:
                description: 'Kind is a string value representing the REST resource this
                  object represents. Servers may infer this from the endpoint the client
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

      GTEST_AMBIGUOUS_ELSE_BLOCKER_ \
      if (::testing::internal::AlwaysTrue()) { \
         GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
      } else \
        ::testing::Message()
    
    // A class representing the parsed contents of the
    // --gtest_internal_run_death_test flag, as it existed when
    // RUN_ALL_TESTS was called.
    class InternalRunDeathTestFlag {
     public:
      InternalRunDeathTestFlag(const std::string& a_file,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. operator/pkg/validate/common.go

    	if err != nil {
    		return util.NewErrs(fmt.Errorf("%s : %s", path, err))
    	}
    	return validatePortNumber(path, intV)
    }
    
    // validatePortNumber checks whether val is an integer representing a valid port number.
    func validatePortNumber(path util.Path, val any) util.Errors {
    	return validateIntRange(path, val, 0, 65535)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr1_gradle_init.adoc

    More subprojects can be added by additional `include()` statements.
    
    Our build contains one subproject called `app` representing the Java application we are building.
    It is configured in the `app/build.gradle(.kts)` file:
    
    [.multi-language-sample]
    =====
    .build.gradle.kts
    [source, kotlin]
    ----
    plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 22:50:45 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/dependency_management_terminology.adoc

    [[sub:terminology_feature_variant]]
    == Feature Variant
    
    A feature variant is a <<#sub:terminology_variant,variant>> representing a feature of a component that can be individually selected or not.
    A feature variant is identified by one or more <<#sub:terminology_capability,capabilities>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  9. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/java/SamplesJavaTestingIntegrationTest.groovy

            return new XmlSlurper().parse(getTestResultsFile(sampleDir, testClassName, taskName))
        }
    
        /**
         * Returns the {@code TestFile} instance representing the required JUnit test
         * results file. Assumes the standard test results directory.
         */
        private static TestFile getTestResultsFile(TestFile sampleDir, String testClassName, String taskName = "test") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/walk/walk.go

    	}
    	return boundedDotPtr(base.Pos, itab, itabTypeField)
    }
    
    var itabTypeField *types.Field
    
    // boundedDotPtr returns a selector expression representing ptr.field
    // and omits nil-pointer checks for ptr.
    func boundedDotPtr(pos src.XPos, ptr ir.Node, field *types.Field) *ir.SelectorExpr {
    	sel := ir.NewSelectorExpr(pos, ir.ODOTPTR, ptr, field.Sym)
    	sel.Selection = field
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top