Search Options

Results per page
Sort
Preferred Languages
Advance

Results 241 - 250 of 1,759 for Forked (0.09 sec)

  1. src/cmd/go/internal/modload/vendor.go

    					// replacements for modules that did not have any packages to vendor.
    				} else {
    					vendErrorf(r.Old, "is replaced in %s, but not marked as replaced in vendor/modules.txt", base.ShortPath(replacementSource))
    				}
    			} else if vr != rNewCanonical {
    				vendErrorf(r.Old, "is replaced by %s in %s, but marked as replaced by %s in vendor/modules.txt", describe(rNew), base.ShortPath(replacementSource), describe(vr))
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/escape/Escaper.java

       *       correctly, including surrogate character pairs. If the input is badly formed the escaper
       *       should throw {@link IllegalArgumentException}.
       *   <li>{@link CharEscaper} handles Java characters independently and does not verify the input
       *       for well formed characters. A {@code CharEscaper} should not be used in situations where
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 01 16:02:17 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/DefaultComponentSelectionDescriptor.java

            this(cause, Describables.of(cause.getDefaultReason()), false, cause == ComponentSelectionCause.FORCED);
        }
    
        public DefaultComponentSelectionDescriptor(ComponentSelectionCause cause, Describable description) {
            this(cause, description, true, cause == ComponentSelectionCause.FORCED);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/local/model/DefaultProjectDependencyMetadata.java

            }
            return false;
        }
    
        @Override
        public ForcingDependencyMetadata forced() {
            if (delegate instanceof ForcingDependencyMetadata) {
                return ((ForcingDependencyMetadata) delegate).forced();
            }
            return this;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlValidationTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.xml
    
    import spock.lang.Specification
    
    class XmlValidationTest extends Specification {
        def "catches poorly formed xml names"() {
            expect:
            !XmlValidation.isValidXmlName(name)
    
            where:
            name        | _
            ''          | _
            'foo\t'     | _
            'foo\\n'    | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 22 14:56:07 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                                // source sets with 'test' in their name are marked as test on the Eclipse classpath
                                testSourceSetsConvention.add(sourceSet);
    
                                // resolved dependencies from the source sets with 'test' in their name are marked as test on the Eclipse classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/resources/ExclusiveAccessResourceLockTest.groovy

            coordinationService.withStateLock(unlock(resourceLock))
    
            then:
            !resourceLock.doIsLocked()
            !resourceLock.doIsLockedByCurrentThread()
        }
    
        def "can lock a resource that is already locked"() {
            given:
            assert coordinationService.withStateLock(tryLock(resourceLock))
            assert resourceLock.doIsLocked()
    
            when:
            coordinationService.withStateLock(tryLock(resourceLock))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/resource_analyzer.mlir

    // RUN:        -split-input-file -tf-resource-analyzer-test %s \
    // RUN:   | FileCheck %s
    
    // TODO(b/269548549): Add tests to cover more patterns.
    
    // Test that VarHandleOp is not marked as "potentially written" if it is not
    // assigned inside the function called by "tf.BatchFunction".
    
    module {
    // CHECK-LABEL: @serving_default
      func.func @serving_default() -> (tensor<*xi32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ResolveChangesStepTest.groovy

                def changes = delegateContext.changes.get()
                assert delegateContext.rebuildReasons == ImmutableList.of("Forced rebuild.")
                assert !changes.createInputChanges().incremental
                return delegateResult
            }
            _ * context.nonIncrementalReason >> Optional.of("Forced rebuild.")
            _ * context.beforeExecutionState >> Optional.of(beforeExecutionState)
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLockManager.java

         * released by calling {@link FileLock#close()}. This method blocks until the lock can be acquired.
         *
         * @param target The file to be locked.
         * @param options The lock options.
         * @param targetDisplayName A display name for the target file. This is used in log and error messages.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.1K bytes
    - Viewed (0)
Back to top