Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 680 for forced (0.16 sec)

  1. src/cmd/link/internal/ld/config.go

    // the external linker be used to complete the link.
    func mustLinkExternal(ctxt *Link) (res bool, reason string) {
    	if ctxt.Debugvlog > 1 {
    		defer func() {
    			if res {
    				ctxt.Logf("external linking is forced by: %s\n", reason)
    			}
    		}()
    	}
    
    	if platform.MustLinkExternal(buildcfg.GOOS, buildcfg.GOARCH, false) {
    		return true, fmt.Sprintf("%s/%s requires external linking", buildcfg.GOOS, buildcfg.GOARCH)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:14:11 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/scopeProvider/TestScopeRenderer.kt

     * Scope tests should not forget checking contained names, as they're a public part of the [KaScope] API.
     *
     * Note: Many scopes wouldn't work correctly if the contained name sets were broken, as these names are often the basis for the search.
     * But this is not a good reason for a lack of tests, as the scope implementation is not forced to use these name sets internally, and
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. plugin/pkg/admission/certificates/signing/admission_test.go

    	decision    authorizer.Decision
    	err         error
    }
    
    func (f fakeAuthorizer) Authorize(ctx context.Context, a authorizer.Attributes) (authorizer.Decision, string, error) {
    	if f.err != nil {
    		return f.decision, "forced error", f.err
    	}
    	if a.GetVerb() != f.verb {
    		return authorizer.DecisionDeny, fmt.Sprintf("unrecognised verb '%s'", a.GetVerb()), nil
    	}
    	if a.GetAPIGroup() != "certificates.k8s.io" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 28 16:20:40 UTC 2020
    - 8.9K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ZincScalaCompilerIntegrationTest.groovy

            classHash(person) != old(classHash(person))
            classHash(house) != old(classHash(house))
            other.lastModified() == old(other.lastModified())
        }
    
        def "recompiles all Scala code when forced"() {
            file("src/main/scala/Person.scala") << """class Person(val name: String = "foo", val age: Int = 1)"""
            file("src/main/scala/House.scala") << """class House(val owner: Person = new Person())"""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/locking/DependencyLockingGraphVisitorTest.groovy

            then:
            failures.size() == 1
            failures.each {
                assert it.problem instanceof LockOutOfDateException
                assert it.problem.message.contains("Did not resolve 'org:foo:1.1' which has been forced / substituted to a different version: '1.0'")
            }
        }
    
        def 'invokes locking provider on writeLocks with visited modules'() {
            given:
            def identifier = newId(mid, '1.1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/integTest/groovy/org/gradle/internal/logging/console/taskgrouping/AbstractBasicGroupedTaskLoggingFunctionalTest.groovy

                        logger.quiet 'First line of text'
                        logger.quiet ''
                        logger.quiet ''
                        logger.quiet 'Last line of text'
                        throw new GradleException('Forced failure')
                    }
                }
            """
            when:
            fails('log')
    
            then:
            result.groupedOutput.task(':log').output =~ /First line of text\n{3,}Last line of text/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         * <p>
         * If your intention is to exclude a particular transitive dependency
         * because you don't like the version it pulls in to the configuration
         * then consider using forced versions' feature: {@link ResolutionStrategy#force(Object...)}.
         *
         * <pre class='autoTested'>
         * plugins {
         *     id 'java' // so that I can declare 'implementation' dependencies
         * }
         *
         * dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. pkg/api/persistentvolumeclaim/util.go

    // been requested.
    // This should be called after DropDisabledFields so that if the AnyVolumeDataSource feature
    // gate is disabled, dataSourceRef will be forced to empty, ensuring pre-1.22 behavior.
    // This should be called before NormalizeDataSources, so that data sources other than PVCs
    // and VolumeSnapshots can only be set through the dataSourceRef field and not the dataSource
    // field.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/AbstractCache.java

        throw new UnsupportedOperationException();
      }
    
      /**
       * {@inheritDoc}
       *
       * <p>This implementation of {@code getAllPresent} lacks any insight into the internal cache data
       * structure, and is thus forced to return the query keys instead of the cached keys. This is only
       * possible with an unsafe cast which requires {@code keys} to actually be of type {@code K}.
       *
       * @since 11.0
       */
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/AbstractCache.java

        throw new UnsupportedOperationException();
      }
    
      /**
       * {@inheritDoc}
       *
       * <p>This implementation of {@code getAllPresent} lacks any insight into the internal cache data
       * structure, and is thus forced to return the query keys instead of the cached keys. This is only
       * possible with an unsafe cast which requires {@code keys} to actually be of type {@code K}.
       *
       * @since 11.0
       */
      /*
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 9.1K bytes
    - Viewed (0)
Back to top