Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 142 for silver (0.47 sec)

  1. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	//
    	// Set in parallel during Filter, so write access there must be
    	// protected by the mutex. Used by PostFilter.
    	unavailableClaims sets.Set[int]
    
    	informationsForClaim []informationForClaim
    }
    
    func (d *stateData) Clone() framework.StateData {
    	return d
    }
    
    type informationForClaim struct {
    	// The availableOnNode node filter of the claim converted from the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        RecursiveCompilabilityChecker::OperationFilter filter =
            CreateOperationFilter(*registration);
        filter.require_always_compilable = true;
        filter.allow_string_consts = false;
        filter.allow_collective_reduce_v2 = false;
        filter.allow_unique_op = false;
        filter.allow_where_op = allow_where_op;
    
        RecursiveCompilabilityChecker checker(
            filter, DeviceType{registration->compilation_device_name});
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // been specified) and its full name matches the user-specified filter.
      //
      // Google Test allows the user to filter the tests by their full names.
      // The full name of a test Bar in test case Foo is defined as
      // "Foo.Bar".  Only the tests that match the filter will run.
      //
      // A filter is a colon-separated list of glob (not regex) patterns,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                            boolQuery.filter(QueryBuilders.termQuery(fessConfig.getIndexFieldContentMinhashBits(),
                                    documentHelper.decodeSimilarDocHash(similarDocHash)));
                        });
                    }
    
                    if (geoInfo != null && geoInfo.toQueryBuilder() != null) {
                        context.addQuery(boolQuery -> boolQuery.filter(geoInfo.toQueryBuilder()));
                    }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/collect/IteratorsTest.java

        Iterator<String> filtered = Iterators.filter(unfiltered, Predicates.alwaysFalse());
        List<String> expected = Collections.emptyList();
        List<String> actual = Lists.newArrayList(filtered);
        assertEquals(expected, actual);
      }
    
      public void testFilterMatchAll() {
        Iterator<String> unfiltered = Lists.newArrayList("foo", "bar").iterator();
        Iterator<String> filtered = Iterators.filter(unfiltered, Predicates.alwaysTrue());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 13:01:51 UTC 2024
    - 55.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    			if !preFilterStatus.IsSuccess() {
    				t.Errorf("prefilter failed with status: %v", preFilterStatus)
    			}
    
    			gotStatus := p.(framework.FilterPlugin).Filter(ctx, cycleState, test.pod, test.nodeInfo)
    			if !reflect.DeepEqual(gotStatus, test.wantStatus) {
    				t.Errorf("status does not match: %v, want: %v", gotStatus, test.wantStatus)
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		localSockFilter := (*RawSockaddrInet4)(unsafe.Pointer(&request.filter.local[0]))
    		localSockFilter.Family = AF_INET
    		var i int
    		for i = 0; i < 4; i++ {
    			if localSockaddr.Addr[i] != 0 {
    				break
    			}
    		}
    		if i != 4 {
    			request.filter.flags |= nwmFilterLclAddrMask
    			for i = 0; i < 4; i++ {
    				localSockFilter.Addr[i] = localSockaddr.Addr[i]
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    				{basePod("t2-foo1"), false, ""},
    				{basePodAssigned("t2-foo1", "t2-bar1"), true, watch.Added},
    			},
    		},
    		{
    			name:          "cluster-wide watch, request without name, field selector with spec.nodeName to filter out watch",
    			recursive:     true,
    			fieldSelector: fields.ParseSelectorOrDie("spec.nodeName!=t3-bar1"),
    			indexFields:   []string{"spec.nodeName"},
    			watchTests: []*testWatchStruct{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

        Multiline        On
        Parser_Firstline glog
    
    [FILTER]
        Name        modify
        Match       *
        Hard_rename log message
    
    [FILTER]
        Name        modify
        Match       winevt.raw
        Hard_rename Message message
    
    [FILTER]
        Name         parser
        Match        kube_*
        Key_Name     message
        Reserve_Data True
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            return createCopy(CollectionUtils.filter(getDependencies(), dependencySpec), getDependencyConstraints());
        }
    
        @Override
        public Configuration copyRecursive(Spec<? super Dependency> dependencySpec) {
            warnOnDeprecatedUsage("copyRecursive(Spec)", ProperMethodUsage.RESOLVABLE);
            return createCopy(CollectionUtils.filter(getAllDependencies(), dependencySpec), getAllDependencyConstraints());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
Back to top