Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,015 for Allows (0.14 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java

            assertTrue(robotsTxt.allows("/ccc", "Crawler"));
            assertTrue(robotsTxt.allows("/ddd", "Crawler"));
            assertTrue(robotsTxt.allows("/aaa", "Crawler/1.0"));
            assertFalse(robotsTxt.allows("/bbb", "Crawler/1.0"));
            assertTrue(robotsTxt.allows("/ccc", "Crawler/1.0"));
            assertTrue(robotsTxt.allows("/ddd", "Crawler/1.0"));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/logging/DefaultTestLoggingTest.groovy

            logging.maxGranularity == -1
            logging.stackTraceFilters == [TRUNCATE] as Set
        }
    
        def "allows events to be added as enum values"() {
            when:
            logging.events STARTED, SKIPPED
    
            then:
            logging.events == [STARTED, SKIPPED] as Set
        }
    
        def "allows events to be added as string values"() {
            when:
            logging.events "started", "skipped"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. pkg/proxy/healthcheck/common.go

    */
    
    package healthcheck
    
    import (
    	"net"
    	"net/http"
    )
    
    // listener allows for testing of ServiceHealthServer and ProxierHealthServer.
    type listener interface {
    	// Listen is very much like net.Listen, except the first arg (network) is
    	// fixed to be "tcp".
    	Listen(addr string) (net.Listener, error)
    }
    
    // httpServerFactory allows for testing of ServiceHealthServer and ProxierHealthServer.
    type httpServerFactory interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 29 09:11:29 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  4. maven-plugin-api/src/main/java/org/apache/maven/plugin/Mojo.java

     * a MojoExecutionException or MojoFailureException if error conditions occur.<br>
     * Also included is the <code>setLog(...)</code> method, which simply allows Maven to inject a logging mechanism which
     * will allow the Mojo to communicate to the outside world through standard Maven channels.
     *
     */
    public interface Mojo {
        /** The component <code>role</code> hint for Plexus container */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/marshal.go

    	}
    
    	if s.Schema == nil && !s.Allows {
    		return jsFalse, nil
    	}
    	return jsTrue, nil
    }
    
    func (s *JSONSchemaPropsOrBool) UnmarshalJSON(data []byte) error {
    	var nw JSONSchemaPropsOrBool
    	switch {
    	case len(data) == 0:
    	case data[0] == '{':
    		var sch JSONSchemaProps
    		if err := json.Unmarshal(data, &sch); err != nil {
    			return err
    		}
    		nw.Allows = true
    		nw.Schema = &sch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 13 21:12:46 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  6. cni/pkg/nodeagent/testdata/localhost.yaml

    # This shows an example local config for ztunnel that adds a workload for localhost.
    # This allows local testing by sending requests through the local ztunnel to other servers running on localhost.
    workloads:
    - uid: cluster1//v1/Pod/default/local
      name: local
      namespace: default
      serviceAccount: default
      workloadIps: ["127.0.0.1"]
      protocol: HBONE
      node: local
      network: ""
      services:
        "default/example.com":
          80: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. internal/ioutil/read_file.go

    package ioutil
    
    import (
    	"io"
    	"io/fs"
    	"os"
    
    	"github.com/minio/minio/internal/disk"
    )
    
    var (
    	// OpenFileDirectIO allows overriding default function.
    	OpenFileDirectIO = disk.OpenFileDirectIO
    	// OsOpen allows overriding default function.
    	OsOpen = os.Open
    	// OsOpenFile allows overriding default function.
    	OsOpenFile = os.OpenFile
    )
    
    // ReadFileWithFileInfo reads the named file and returns the contents.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 09 18:17:51 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/marshal.go

    	}
    
    	if s.Schema == nil && !s.Allows {
    		return jsFalse, nil
    	}
    	return jsTrue, nil
    }
    
    func (s *JSONSchemaPropsOrBool) UnmarshalJSON(data []byte) error {
    	var nw JSONSchemaPropsOrBool
    	switch {
    	case len(data) == 0:
    	case data[0] == '{':
    		var sch JSONSchemaProps
    		if err := json.Unmarshal(data, &sch); err != nil {
    			return err
    		}
    		nw.Allows = true
    		nw.Schema = &sch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 13 21:12:46 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/hooks.go

    	// for duplicate registration.
    	originatingStack string
    
    	// done will be closed when the postHook is finished
    	done chan struct{}
    }
    
    type PostStartHookConfigEntry struct {
    	hook PostStartHookFunc
    	// originatingStack holds the stack that registered postStartHooks. This allows us to show a more helpful message
    	// for duplicate registration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/resourceconfig/helpers.go

    	groupVersionMatchers = map[string]func(gv schema.GroupVersion) bool{
    		// allows users to address all api versions
    		APIAll: func(gv schema.GroupVersion) bool { return true },
    		// allows users to address all api versions in the form v[0-9]+
    		APIGA: func(gv schema.GroupVersion) bool { return gaPattern.MatchString(gv.Version) },
    		// allows users to address all beta api versions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 18:36:33 UTC 2022
    - 7.8K bytes
    - Viewed (0)
Back to top