Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 158 for silver (0.87 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsAccessTokenCA.java

    import org.codelibs.fess.es.config.cbean.ca.AccessTokenCA;
    import org.codelibs.fess.es.config.cbean.cq.AccessTokenCQ;
    import org.codelibs.fess.es.config.cbean.cq.bs.BsAccessTokenCQ;
    import org.opensearch.search.aggregations.bucket.filter.FilterAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 59.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsJobLogCA.java

    import org.codelibs.fess.es.config.cbean.ca.JobLogCA;
    import org.codelibs.fess.es.config.cbean.cq.JobLogCQ;
    import org.codelibs.fess.es.config.cbean.cq.bs.BsJobLogCQ;
    import org.opensearch.search.aggregations.bucket.filter.FilterAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/public-api-methods-return-allowed-types.txt

    Method <org.gradle.api.file.CopySpec.filter(groovy.lang.Closure)> has arguments/return type groovy.lang.Closure that is not Gradle public API or primitive or built-in JDK classes or Kotlin classes in (CopySpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 12:21:31 UTC 2024
    - 91.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterators.java

       */
      @SuppressWarnings("unchecked") // can cast to <T> because non-Ts are removed
      @GwtIncompatible // Class.isInstance
      public static <T> UnmodifiableIterator<T> filter(Iterator<?> unfiltered, Class<T> desiredType) {
        return (UnmodifiableIterator<T>) filter(unfiltered, instanceOf(desiredType));
      }
    
      /**
       * Returns {@code true} if one or more elements returned by {@code iterator} satisfy the given
       * predicate.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Iterators.java

       */
      @SuppressWarnings("unchecked") // can cast to <T> because non-Ts are removed
      @GwtIncompatible // Class.isInstance
      public static <T> UnmodifiableIterator<T> filter(Iterator<?> unfiltered, Class<T> desiredType) {
        return (UnmodifiableIterator<T>) filter(unfiltered, instanceOf(desiredType));
      }
    
      /**
       * Returns {@code true} if one or more elements returned by {@code iterator} satisfy the given
       * predicate.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  6. src/cmd/internal/testdir/testdir_test.go

    }
    
    // goDirFiles returns .go files in dir.
    func goDirFiles(dir string) (filter []fs.DirEntry, _ error) {
    	files, err := os.ReadDir(dir)
    	if err != nil {
    		return nil, err
    	}
    	for _, goFile := range files {
    		if filepath.Ext(goFile.Name()) == ".go" {
    			filter = append(filter, goFile)
    		}
    	}
    	return filter, nil
    }
    
    var packageRE = regexp.MustCompile(`(?m)^package ([\p{Lu}\p{Ll}\w]+)`)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsPathMappingCA.java

    import org.codelibs.fess.es.config.cbean.ca.PathMappingCA;
    import org.codelibs.fess.es.config.cbean.cq.PathMappingCQ;
    import org.codelibs.fess.es.config.cbean.cq.bs.BsPathMappingCQ;
    import org.opensearch.search.aggregations.bucket.filter.FilterAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 59.9K bytes
    - Viewed (0)
  8. cmd/bucket-handlers.go

    	}
    
    	var wg sync.WaitGroup
    	// Remove buckets that are in DNS for this server, but aren't local
    	for bucket, records := range dnsBuckets {
    		if bucketsSet.Contains(bucket) {
    			continue
    		}
    
    		if globalDomainIPs.Intersection(set.CreateStringSet(getHostsSlice(records)...)).IsEmpty() {
    			// This is not for our server, so we can continue
    			continue
    		}
    
    		wg.Add(1)
    		go func(bucket string) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            then:
            r2 == 10
            1 * transformer.transform(someValue()) >> 10
            0 * _
        }
    
        def "can filter value"() {
            def spec = Mock(Spec)
            def property = propertyWithNoValue()
    
            when:
            def provider = property.filter(spec)
    
            then:
            0 * _
    
            when:
            property.set(someValue())
            def r1 = provider.get()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_container.go

    	filter := &runtimeapi.ContainerFilter{}
    	if !allContainers {
    		filter.State = &runtimeapi.ContainerStateValue{
    			State: runtimeapi.ContainerState_CONTAINER_RUNNING,
    		}
    	}
    
    	containers, err := m.runtimeService.ListContainers(ctx, filter)
    	if err != nil {
    		klog.ErrorS(err, "ListContainers failed")
    		return nil, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
Back to top