Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,701 for Excluded (0.17 sec)

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

    	for _, r := range modFile.Require {
    		i.require[r.Mod] = requireMeta{indirect: r.Indirect}
    	}
    
    	i.replace = toReplaceMap(modFile.Replace)
    
    	i.exclude = make(map[module.Version]bool, len(modFile.Exclude))
    	for _, x := range modFile.Exclude {
    		i.exclude[x.Mod] = true
    	}
    
    	return i
    }
    
    // modFileIsDirty reports whether the go.mod file differs meaningfully
    // from what was indexed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 26.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/collections/ImmutableFilteredList.java

        }
    
        /**
         * Given an {@code other} {@code ImmutableFilteredList}, return a new list which contains all items in
         * this list, except with the item at the specified {@code index} in {@code other} excluded.
         * <p>
         * This method assumes that this list and {@code other} share the same source list.
         */
        public ImmutableFilteredList<T> withoutIndexFrom(int index, ImmutableFilteredList<T> other) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildLogger.java

            if (logger.isInfoEnabled()) {
                logger.info("Tasks to be executed: {}", graph.getAllTasks());
                logger.info("Tasks that were excluded: {}", ((TaskExecutionGraphInternal)graph).getFilteredTasks());
            }
        }
    
        @SuppressWarnings("deprecation")
        @Override
        public void buildFinished(BuildResult result) {
            this.action = result.getAction();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Feb 04 18:57:43 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. src/syscall/dirent.go

    			return origlen, count, names
    		}
    		rec := buf[:reclen]
    		buf = buf[reclen:]
    		ino, ok := direntIno(rec)
    		if !ok {
    			break
    		}
    		// See src/os/dir_unix.go for the reason why this condition is
    		// excluded on wasip1.
    		if ino == 0 && runtime.GOOS != "wasip1" { // File absent in directory.
    			continue
    		}
    		const namoff = uint64(unsafe.Offsetof(Dirent{}.Name))
    		namlen, ok := direntNamlen(rec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:13:24 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            when: //transitive dependency is excluded
            file("impl/build.gradle") << "configurations.implementation.exclude module: 'hamcrest-core' \n"
            run("impl:${language.compileTaskName}")
    
            then:
            file("impl/classpath.txt").text == wrapClassDirs("mockito-core-1.9.5.jar, junit-4.13.jar, objenesis-1.0.jar")
    
            when: //direct dependency is excluded
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorData.groovy

    }
    
    public class ATestNGClassWithGroups {
        @Test(groups="group1") public void group1() {}
        @Test(groups="group2") public void group2() {}
        @Test(groups="group2,group3") public void excluded() {}
        @Test(groups="group4") public void ignored() {}
    }
    
    public class ATestNGFactoryClass {
        @Factory
        public Object[] suite() {
            return [new ATestNGClass()] as Object[]
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/execution/selection/DefaultBuildTaskSelectorTest.groovy

            then:
            def e2 = thrown(TaskSelectionException)
            e2.message == message
                .replace("tasks that match", "excluded tasks that match")
                .replace("matching tasks", "matching excluded tasks")
    
            where:
            path        | message
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 10:15:47 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. common/config/.golangci.yml

          - G404
    issues:
      # List of regexps of issue texts to exclude, empty list by default.
      # But independently from this option we use default exclude patterns,
      # it can be disabled by `exclude-use-default: false`. To list all
      # excluded by default patterns execute `golangci-lint run --help`
      exclude:
        - composite literal uses unkeyed fields
      # Which dirs to exclude: issues from them won't be reported.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 20:03:06 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/MutableVersionConstraint.java

         * @since 4.6
         */
        void setBranch(@Nullable String branch);
    
        /**
         * Sets the version as strict.
         * <p>
         * Any version not matched by this version notation will be excluded. This is the strongest version declaration.
         * It will cause dependency resolution to fail if no version acceptable by this clause can be selected.
         * This term supports dynamic versions.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 30 23:02:48 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/well_known_labels.go

    	// understand nodes). For services that use externalTrafficPolicy=Local, this may mean that
    	// any backends on excluded nodes are not reachable by those external load-balancers.
    	// Implementations of this exclusion may vary based on provider.
    	LabelNodeExcludeBalancers = "node.kubernetes.io/exclude-from-external-load-balancers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top