Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 516 for excluded (0.22 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pom.xml

    					<webappDirectory>${project.build.directory}/${project.build.finalName}-compress</webappDirectory>
    					<excludes>
    						<exclude>**/*min.js</exclude>
    						<exclude>**/*min.css</exclude>
    						<exclude>**/plugins/**/*.js</exclude>
    						<exclude>**/WEB-INF/site/**</exclude>
    					</excludes>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>org.dbflute</groupId>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  8. pkg/proxy/ipvs/proxier.go

    				proxier.logger.Error(err, "Failed to delete service", "virtualServer", svc)
    			}
    		}
    	}
    }
    
    func (proxier *Proxier) isIPInExcludeCIDRs(ip net.IP) bool {
    	// make sure it does not fall within an excluded CIDR range.
    	for _, excludedCIDR := range proxier.excludeCIDRs {
    		if excludedCIDR.Contains(ip) {
    			return true
    		}
    	}
    	return false
    }
    
    func getIPFamily(ip net.IP) v1.IPFamily {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. maven-model-builder/pom.xml

                  <exclude>org.apache.maven.model.interpolation.AbstractStringBasedModelInterpolator</exclude>
                  <exclude>org.apache.maven.model.interpolation.StringSearchModelInterpolator</exclude>
                  <exclude>org.apache.maven.model.interpolation.StringVisitorModelInterpolator</exclude>
                  <exclude>org.apache.maven.model.io.DefaultModelReader#DefaultModelReader():CONSTRUCTOR_REMOVED</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. src/crypto/x509/verify_test.go

    		currentTime: 1486684488,
    		systemSkip:  true, // does not chain to a system root
    
    		errorCallback: expectHostnameError("certificate is not valid for any names"),
    	},
    	{
    		// Test that excluded names are respected.
    		name:          "ExcludedNames",
    		leaf:          excludedNamesLeaf,
    		dnsName:       "bender.local",
    		intermediates: []string{excludedNamesIntermediate},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
Back to top