Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 69 for excluded (0.14 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Excluded Paths For Crawling */
        public static final String LABELS_EXCLUDED_PATHS = "{labels.excludedPaths}";
    
        /** The key of the message: Excluded URLs For Crawling */
        public static final String LABELS_EXCLUDED_URLS = "{labels.excludedUrls}";
    
        /** The key of the message: Excluded Paths For Indexing */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  2. fastapi/routing.py

                    include=include,
                    exclude=exclude,
                    by_alias=by_alias,
                    exclude_unset=exclude_unset,
                    exclude_defaults=exclude_defaults,
                    exclude_none=exclude_none,
                )
    
            return jsonable_encoder(
                value,
                include=include,
                exclude=exclude,
                by_alias=by_alias,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  3. fastapi/applications.py

                    as the default. This is different from `response_model_exclude_unset`
                    in that if the fields are set but contain the same default values,
                    they will be excluded from the response.
    
                    When `True`, default values are omitted from the response.
    
                    Read more about it in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_test.go

    	defer testKubelet.Cleanup()
    	kubelet := testKubelet.kubelet
    	pods := newTestPods(8)
    	now := metav1.NewTime(time.Now())
    
    	// terminal pods are excluded
    	pods[0].Status.Phase = v1.PodFailed
    	pods[1].Status.Phase = v1.PodSucceeded
    
    	// deleted pod is included unless it's known to be terminated
    	pods[2].Status.Phase = v1.PodRunning
    	pods[2].DeletionTimestamp = &now
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/load/pkg.go

    // excluded, or because all non-excluded files were test sources.
    type NoGoError struct {
    	Package *Package
    }
    
    func (e *NoGoError) Error() string {
    	if len(e.Package.IgnoredGoFiles) > 0 {
    		// Go files exist, but they were ignored due to build constraints.
    		return "build constraints exclude all Go files in " + e.Package.Dir
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  6. cmd/bucket-replication.go

    	// object layer not initialized we return with no decision.
    	if newObjectLayerFn() == nil {
    		return
    	}
    
    	// Disable server-side replication on object prefixes which are excluded
    	// from versioning via the MinIO bucket versioning extension.
    	if !globalBucketVersioningSys.PrefixEnabled(bucket, object) {
    		return
    	}
    
    	replStatus := mopts.ReplicationStatus()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  7. pkg/kubelet/kubelet_pods.go

    func (kl *Kubelet) filterOutInactivePods(pods []*v1.Pod) []*v1.Pod {
    	filteredPods := make([]*v1.Pod, 0, len(pods))
    	for _, p := range pods {
    		// if a pod is fully terminated by UID, it should be excluded from the
    		// list of pods
    		if kl.podWorkers.IsPodKnownTerminated(p.UID) {
    			continue
    		}
    
    		// terminal pods are considered inactive UNLESS they are actively terminating
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  8. src/crypto/x509/x509_test.go

    		}
    
    		if len(cert.ExcludedEmailAddresses) != 2 || cert.ExcludedEmailAddresses[0] != ".example.com" || cert.ExcludedEmailAddresses[1] != "example.com" {
    			t.Errorf("%s: failed to parse excluded email addresses: %#v", test.name, cert.ExcludedEmailAddresses)
    		}
    
    		if len(cert.PermittedURIDomains) != 2 || cert.PermittedURIDomains[0] != ".bar.com" || cert.PermittedURIDomains[1] != "bar.com" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  9. 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)
  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