Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 62 for _dot_ (0.04 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    	switch {
    	case name != nil:
    		x = name
    	case p.tok == _Name:
    		x = p.name()
    	default:
    		x = NewName(p.pos(), "_")
    		p.syntaxError("expected name")
    		p.advance(_Dot, _Semi, _Rbrace)
    	}
    
    	if p.tok == _Dot {
    		s := new(SelectorExpr)
    		s.pos = p.pos()
    		p.next()
    		s.X = x
    		s.Sel = p.name()
    		x = s
    	}
    
    	if p.tok == _Lbrack {
    		x = p.typeInstance(x)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. api/maven-api-metadata/src/main/mdo/metadata.mdo

        <class java.clone="deep">
          <name>Plugin</name>
          <version>1.0.0+</version>
          <description>Mapping information for a single plugin within this group.</description>
          <comment>NOTE: plugin version is _NOT_ included here, since it is resolved using a separate algorithm in plugins' artifact.</comment>
          <fields>
            <field>
              <name>name</name>
              <type>String</type>
              <required>true</required>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

          context, bundle.saved_object_graph(), &revived_objects));
    
      // Revive function library functions as concrete functions without captures.
      // This is necessary because object graph functions may refer to functions
      // _not_ in the object graph: A while loop, for example, will create two
      // auxiliary `while_cond` and `while_body` functions that are only present in
      // the graph def function library.
      for (const FunctionDef& function :
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

     *  We decide that the LHS is a type reference by checking if the left hand
     *  side is a (qualified) name, and, in case it _is_, resolving that name.
     *
     *  If it resolves to a non-class declaration, it does _not_ refer to a type.
     */
    private fun doesDoubleColonUseLHS(lhs: PsiElement): Boolean {
        val reference = when (val inner = lhs.unwrapParenthesesLabelsAndAnnotations()) {
            is KtReferenceExpression ->
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository.java

                        // Starting here we're going to process the component metadata rules
                        // Therefore metadata can be mutated, and will _not_ be stored in the module metadata cache
                        // but will be in the _in memory_ cache
                        ModuleComponentResolveMetadata processedMetadata = metadataProcessor.processMetadata(resolvedMetadata);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    These shared caches could be accessed by versions of Gradle with different settings to retain cache artifacts.
    
    This means that:
    
    - If the retention period is _not_ customized, all versions that perform cleanup will have the same retention periods. There will be no effect due to sharing a Gradle User Home with multiple versions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/integTest/groovy/org/gradle/testing/jacoco/plugins/JacocoAggregationIntegrationTest.groovy

            report.assertHasClassCoverage("application.Adder")
            report.assertHasClassButNoCoverage("direct.Multiplier") // direct will _not_ have coverage as its test task has a verification failure
            report.assertHasClassCoverage("transitive.Powerize")
        }
    
        def 'catastrophic failure of single test prevents creation of aggregated report'() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 26.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    Note that link:{javadocPath}/org/gradle/api/tasks/CacheableTask.html[@CacheableTask] is not inherited by subclasses.
    Custom task types are _not_ cacheable by default.
    
    [[sec:task_output_caching_cacheable_tasks]]
    === Built-in cacheable tasks
    
    Currently, the following built-in Gradle tasks are cacheable:
    
    * Java toolchain:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. src/os/exec.go

    	//
    	// On Unix and Plan 9, Release sets p.Pid = -1. This is the only part of the
    	// Process API that is not thread-safe, but it can't be changed now.
    	//
    	// On Windows, Release does _not_ modify p.Pid.
    	//
    	// On Windows, Wait calls Release after successfully waiting to
    	// proactively clean up resources.
    	//
    	// On Unix and Plan 9, Wait also proactively cleans up resources, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/feature_variants.adoc

    - using POM metadata (Maven), features are published as **optional dependencies** and artifacts of features are published with different _classifiers_
    - using Ivy metadata, features are published as extra configurations, which are _not_ extended by the `default` configuration
    --
    
    Publishing features is supported using the `maven-publish` and `ivy-publish` plugins only.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 18:45:05 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top