Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 62 for _dot_ (0.05 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

                    }
                    group = 'org.test'
                    version = '1.9'
                }
            """
        }
    
        // When publishing a platform, the Gradle metadata will _not_ contain enforced platforms
        // as those are synthetic platforms generated at runtime. This test is here to make sure
        // this is the case
        def "can enforce a published platform"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    - metadata artifacts (POM files, Ivy descriptors, Gradle Module Metadata)
    - plugins (both project and settings plugins)
    - artifacts resolved using the advanced dependency resolution APIs
    
    Gradle will _not_ verify changing dependencies (in particular `SNAPSHOT` dependencies) nor locally produced artifacts (typically jars produced during the build itself) as by nature their checksums and signatures would always change.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    `publish`::
    _Depends on_: All `publish__PubName__PublicationTo__RepoName__Repository` tasks
    +
    An aggregate task that publishes all defined publications to all defined repositories. It does _not_ include copying publications to the local Maven cache.
    
    `publishToMavenLocal`::
    _Depends on_: All `publish__PubName__PublicationToMavenLocal` tasks
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/task_configuration_avoidance.adoc

    adle.api.Task.html#org.gradle.api.Task:finalizedBy(java.lang.Object++[]++)[Task.finalizedBy(...)] represent strong relationships, which _force_ the execution of referenced tasks, even if they hadn't been created otherwise.
    
    - If a task is _not_ executed, regardless if it was created with link:{groovyDslPath}/org.gradle.api.tasks.TaskContainer.html#org.gradle.api.tasks.TaskContainer:register(java.lang.String)[Task.register(...)] or link:{groovyDslPath}/org.gradle.api.tasks.TaskContainer.h...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 23:45:25 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/syntax/scanner.go

    			s.nextch()
    			if s.ch == '.' {
    				s.nextch()
    				s.tok = _DotDotDot
    				break
    			}
    			s.rewind() // now s.ch holds 1st '.'
    			s.nextch() // consume 1st '.' again
    		}
    		s.tok = _Dot
    
    	case '+':
    		s.nextch()
    		s.op, s.prec = Add, precAdd
    		if s.ch != '+' {
    			goto assignop
    		}
    		s.nextch()
    		s.nlsemi = true
    		s.tok = _IncOp
    
    	case '-':
    		s.nextch()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    [[java_version_tracking]]
    == Java version tracking
    
    Gradle tracks only the major version of Java as an input for compilation and test execution.
    Currently, it does _not_ track the vendor nor the minor version.
    Still, the vendor and the minor version may influence the bytecode produced by compilation.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  7. tensorflow/BUILD

    # 'enable_registration_v2' opts-in to a different implementation of op and
    # kernel registration - REGISTER_OP, REGISTER_KERNEL_BUILDER, etc.
    #
    # This setting is currently experimental. The 'v2' implementation does _not_
    # correspond to a particular, finalized design; rather, it relates to
    # developing one.
    #
    # The current aim of the 'v2' implementation is to allow 'unused' ops and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 16:51:59 UTC 2024
    - 53.5K bytes
    - Viewed (0)
  8. src/runtime/iface.go

    	// for all interface/type pairs used in switches (which are added to itabTable
    	// in itabsinit). The dynamically-generated itab's never participate in type switches,
    	// and thus the hash is irrelevant.
    	// Note: m.Hash is _not_ the hash used for the runtime itabTable hash table.
    	m.Hash = 0
    	itabInit(m, true)
    	itabAdd(m)
    	unlock(&itabLock)
    finish:
    	if m.Fun[0] != 0 {
    		return m
    	}
    	if canfail {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    ====
    
    Capabilities which are declared in a substitution rule on the requested dependency constitute part of the dependency match specification, and therefore dependencies which do _not_ require the capabilities will not be matched.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/staticpods.go

    			}
    		}
    	}
    
    	// Remove the temporary directories used on a best-effort (don't fail if the calls error out)
    	// The calls are set here by design; we should _not_ use "defer" above as that would remove the directories
    	// even in the "fail and rollback" case, where we want the directories preserved for the user.
    	return pathMgr.CleanupDirs()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 10:07:41 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top