Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,648 for nothings (0.29 sec)

  1. maven-repository-metadata/src/test/java/org/apache/maven/artifact/repository/metadata/MetadataTest.java

            sv.setExtension("jar");
            sv.setUpdated("20200710072412");
            target.getVersioning().addSnapshotVersion(sv);
    
            Metadata source = createMetadataFromArtifact(artifact);
            // nothing should be actually changed, but still merge returns true
            assertTrue(target.merge(source));
    
            // NOTE! Merge updates last updated to source
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/PgpKeyGrouper.java

                    }
                }
                if (commonPrefix != null) {
                    commonPrefixes.add(commonPrefix);
                }
                if (remainder.equals(previous)) {
                    // could do nothing with the first, let's go with the next one
                    remainder.remove(0);
                }
            }
            return commonPrefixes;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/ProblemReporter.java

         * <p>
         * An exception must be provided in the spec.
         * <p>
         * The spec must specify the exception, the problem label, and the category. Any additional configuration is optional.
         *
         * @return nothing, the method throws an exception
         * @since 8.6
         */
        RuntimeException throwing(Action<ProblemSpec> spec);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 10:28:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. platforms/core-execution/build-cache/src/main/java/org/gradle/caching/internal/controller/service/RemoteBuildCacheServiceHandle.java

         * If canLoad() returns false, then this method will do nothing and will return empty result.
         */
        Optional<BuildCacheLoadResult> maybeLoad(BuildCacheKey key, File toFile, Function<File, BuildCacheLoadResult> unpackFunction);
    
        boolean canStore();
    
        /**
         * Stores the file to the cache.
         *
         * If canStore() returns false, then this method will do nothing and will return false.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. src/cmd/internal/pgo/pprof.go

    	if errors.Is(err, profile.ErrNoData) {
    		// Treat a completely empty file the same as a profile with no
    		// samples: nothing to do.
    		return emptyProfile(), nil
    	} else if err != nil {
    		return nil, fmt.Errorf("error parsing profile: %w", err)
    	}
    
    	if len(p.Sample) == 0 {
    		// We accept empty profiles, but there is nothing to do.
    		return emptyProfile(), nil
    	}
    
    	valueIndex := -1
    	for i, s := range p.SampleType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/renderers/renderer_test.cc

          BlankLine();
          BlockOpen("void TestFunction()");
          {
            Statement("int i = 1");
            BlankLine();
            BlockOpen("while (i == 1)");
            {
              CommentLine("Do nothing, really....");
              CodeLine("#if 0");
              Statement("call()");
              CodeLine("#endif");
              BlockClose();
            }
            BlockClose("  // comment ending TestFunction");
          }
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 28 05:51:40 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modcmd/verify.go

    	data, err := os.ReadFile(zip + "hash")
    	if err != nil {
    		if zipErr != nil && errors.Is(zipErr, fs.ErrNotExist) &&
    			dirErr != nil && errors.Is(dirErr, fs.ErrNotExist) {
    			// Nothing downloaded yet. Nothing to verify.
    			return nil
    		}
    		errs = append(errs, fmt.Errorf("%s %s: missing ziphash: %v", mod.Path, mod.Version, err))
    		return errs
    	}
    	h := string(bytes.TrimSpace(data))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ActionsTest.groovy

    import static org.gradle.internal.Actions.toAction
    
    class ActionsTest extends Specification {
    
        def "do nothing indeed does nothing"() {
            given:
            def thing = Mock(Object)
    
            when:
            doNothing().execute(thing)
    
            then:
            0 * thing._(*_)
        }
    
        def "can do nothing on null"() {
            when:
            doNothing().execute(null)
    
            then:
            notThrown(Throwable)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/go/ast/walk.go

    	case *MapType:
    		Walk(v, n.Key)
    		Walk(v, n.Value)
    
    	case *ChanType:
    		Walk(v, n.Value)
    
    	// Statements
    	case *BadStmt:
    		// nothing to do
    
    	case *DeclStmt:
    		Walk(v, n.Decl)
    
    	case *EmptyStmt:
    		// nothing to do
    
    	case *LabeledStmt:
    		Walk(v, n.Label)
    		Walk(v, n.Stmt)
    
    	case *ExprStmt:
    		Walk(v, n.X)
    
    	case *SendStmt:
    		Walk(v, n.Chan)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:34:10 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  10. platforms/software/version-control/src/test/groovy/org/gradle/vcs/internal/DefaultVcsMappingStoreTest.groovy

        def store = new DefaultVcsMappingsStore(factory)
    
        def "does nothing when no rules defined"() {
            def selector = Stub(ModuleComponentSelector)
    
            when:
            def spec = store.locateVcsFor(selector)
    
            then:
            spec == null
            0 * factory._
        }
    
        def "does nothing when no rule accepts selector"() {
            def selector = Stub(ModuleComponentSelector)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top