Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 887 for excluded (0.31 sec)

  1. src/runtime/mprof.go

    	goroutineProfile.labels = labels
    	// The finalizer goroutine needs special handling because it can vary over
    	// time between being a user goroutine (eligible for this profile) and a
    	// system goroutine (to be excluded). Pick one before restarting the world.
    	if fing != nil {
    		fing.goroutineProfiled.Store(goroutineProfileSatisfied)
    		if readgstatus(fing) != _Gdead && !isSystemGoroutine(fing, false) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DefaultMutableIvyModuleResolveMetadataTest.groovy

            immutableCopy.sources == sources
            immutableCopy.statusScheme == ["1", "2"]
        }
    
        def exclude(String group, String module, String... confs) {
            def exclude = new DefaultExclude(DefaultModuleIdentifier.newId(group, module), confs, "whatever")
            return exclude
        }
    
        def artifact(String name, String... confs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. api/maven-api-model/src/main/mdo/maven.mdo

                <type>String</type>
                <multiplicity>*</multiplicity>
              </association>
            </field>
            <field>
              <name>excludes</name>
              <version>3.0.0+</version>
              <description>
                A list of patterns to exclude, e.g. {@code **&amp;#47;*.xml}
              </description>
              <association>
                <type>String</type>
                <multiplicity>*</multiplicity>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types/type.go

    // All other types (including string, slice, and interface types) count as one element.
    // If countBlank is IgnoreBlankFields, then blank struct fields
    // (and their comprised elements) are excluded from the count.
    // struct { x, y [3]int } has six components; [10]struct{ x, y string } has twenty.
    func (t *Type) NumComponents(countBlank componentsIncludeBlankFields) int64 {
    	switch t.kind {
    	case TSTRUCT:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/runtime/framework.go

    		// - part 2: multiPointEnabled - i.e., plugin defined in multipoint but not in regular extension point.
    		// - part 3: other plugins (excluded by part 1 & 2) in regular extension point.
    		newPlugins := reflect.New(reflect.TypeOf(e.slicePtr).Elem()).Elem()
    		// part 1
    		for _, name := range slice.CopyStrings(enabledSet.list) {
    			if overridePlugins.has(name) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/tasks/AbstractCopyTask.java

         * {@inheritDoc}
         */
        @Override
        public AbstractCopyTask exclude(String... excludes) {
            getMainSpec().exclude(excludes);
            return this;
        }
    
        /**
         * {@inheritDoc}
         */
        @Override
        public AbstractCopyTask exclude(Iterable<String> excludes) {
            getMainSpec().exclude(excludes);
            return this;
        }
    
        /**
         * {@inheritDoc}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 10:41:40 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  7. tests/integration/ambient/baseline_test.go

    				include := c.Include
    				if include == nil {
    					include = func(_ echo.Instance, _ echo.CallOptions) bool { return true }
    				}
    				if !include(src, opt) {
    					t.Skip("excluded")
    				}
    				src.CallOrFail(t, opt)
    			})
    		})
    	}
    }
    
    func TestIngress(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  8. maven-settings/pom.xml

            <configuration>
              <parameter>
                <excludes>
                  <exclude>org.apache.maven.settings.io.xpp3.SettingsXpp3Reader#contentTransformer</exclude>
                  <exclude>org.apache.maven.settings.RuntimeInfo</exclude>
                  <exclude>org.apache.maven.settings.Settings#setModelEncoding(java.lang.String):METHOD_REMOVED</exclude>
                </excludes>
              </parameter>
            </configuration>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. maven-plugin-api/pom.xml

            <configuration>
              <parameter>
                <excludes>
                  <exclude>org.apache.maven.monitor.logging.DefaultLog</exclude>
                  <exclude>org.apache.maven.plugin.lifecycle</exclude>
                  <exclude>org.apache.maven.plugin.descriptor.PluginDescriptor#getLifecycleMapping(java.lang.String)</exclude>
                </excludes>
              </parameter>
            </configuration>
          </plugin>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/PatternSet.java

            return this;
        }
    
        @Override
        public PatternSet exclude(String... excludes) {
            Collections.addAll(getExcludes(), excludes);
            return this;
        }
    
        @Override
        public PatternSet exclude(Iterable excludes) {
            for (Object exclude : excludes) {
                getExcludes().add(PARSER.parseNotation(exclude));
            }
            return this;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 21:33:45 UTC 2024
    - 11.2K bytes
    - Viewed (1)
Back to top