Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 3,955 for Filler (0.15 sec)

  1. guava/src/com/google/common/base/SmallCharMatcher.java

      static final int MAX_SIZE = 1023;
      private final char[] table;
      private final boolean containsZero;
      private final long filter;
    
      private SmallCharMatcher(char[] table, long filter, boolean containsZero, String description) {
        super(description);
        this.table = table;
        this.filter = filter;
        this.containsZero = containsZero;
      }
    
      private static final int C1 = 0xcc9e2d51;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. pkg/probe/dialer_windows.go

    // Ref: https://issues.k8s.io/89898
    func ProbeDialer() *net.Dialer {
    	dialer := &net.Dialer{
    		Control: func(network, address string, c syscall.RawConn) error {
    			return c.Control(func(fd uintptr) {
    				syscall.SetsockoptLinger(syscall.Handle(fd), syscall.SOL_SOCKET, syscall.SO_LINGER, &syscall.Linger{Onoff: 1, Linger: 1})
    			})
    		},
    	}
    	return dialer
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 16:57:32 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/declaringRepositories-filtering/kotlin/build.gradle.kts

        }
    }
    // end::repository-filter[]
    
    // tag::exclusive-repository-filter[]
    repositories {
        // This repository will _not_ be searched for artifacts in my.company
        // despite being declared first
        mavenCentral()
        exclusiveContent {
            forRepository {
                maven {
                    url = uri("https://repo.mycompany.com/maven2")
                }
            }
            filter {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/base/SmallCharMatcher.java

      static final int MAX_SIZE = 1023;
      private final char[] table;
      private final boolean containsZero;
      private final long filter;
    
      private SmallCharMatcher(char[] table, long filter, boolean containsZero, String description) {
        super(description);
        this.table = table;
        this.filter = filter;
        this.containsZero = containsZero;
      }
    
      private static final int C1 = 0xcc9e2d51;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/FileTreeAdapterTest.groovy

            MinimalFileTree filtered = Mock()
            PatternFilterable filter = Mock()
            FileTreeAdapter adapter = newFileTreeAdapter(tree)
    
            when:
            def filteredAdapter = adapter.matching(filter)
    
            then:
            filteredAdapter instanceof FileTreeAdapter
            filteredAdapter.tree == filtered
            1 * tree.filter(filter) >> filtered
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Actions.java

            return new FilteredAction<T>(action, filter);
        }
    
        private static class FilteredAction<T> implements Action<T> {
            private final Spec<? super T> filter;
            private final Action<? super T> action;
    
            public FilteredAction(Action<? super T> action, Spec<? super T> filter) {
                this.filter = filter;
                this.action = action;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 7K bytes
    - Viewed (0)
  7. src/net/internal/socktest/switch.go

    // If the filter returns a non-nil error, the system call function
    // returns the non-nil error.
    type AfterFilter func(*Status) error
    
    func (f AfterFilter) apply(st *Status) error {
    	if f == nil {
    		return nil
    	}
    	return f(st)
    }
    
    // Set deploys the socket system call filter f for the filter type t.
    func (sw *Switch) Set(t FilterType, f Filter) {
    	sw.once.Do(sw.init)
    	sw.fmu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/dynamicresources/structured/namedresources/namedresourcesmodel.go

    		}
    	}
    }
    
    func NewClaimController(filter *resourceapi.NamedResourcesFilter, requests []*resourceapi.NamedResourcesRequest) (*Controller, error) {
    	c := &Controller{}
    	if filter != nil {
    		compilation := cel.Compiler.CompileCELExpression(filter.Selector, environment.StoredExpressions)
    		if compilation.Error != nil {
    			// Shouldn't happen because of validation.
    			return nil, fmt.Errorf("compile class filter CEL expression: %w", compilation.Error)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:26:16 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junitplatform/JUnitPlatformSpec.java

        private final boolean isDryRun;
    
        public JUnitPlatformSpec(
            TestFilterSpec filter,
            Set<String> includeEngines,
            Set<String> excludeEngines,
            Set<String> includeTags,
            Set<String> excludeTags,
            boolean isDryRun
        ) {
            this.filter = filter;
            this.includeEngines = includeEngines;
            this.excludeEngines = excludeEngines;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. pkg/test/framework/components/echo/echotest/filters.go

    //	  Run()
    func (t *T) From(filters ...Filter) *T {
    	for _, filter := range filters {
    		t.sources = filter(t.sources)
    	}
    	return t
    }
    
    func (t *T) FromMatch(m match.Matcher) *T {
    	return t.From(FilterMatch(m))
    }
    
    // To applies each of the filter functions in order to allow removing workloads from the set of destinations.
    // Example:
    //
    //	echotest.New(t, apps).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 29 23:48:45 UTC 2024
    - 8.9K bytes
    - Viewed (0)
Back to top