Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 57 for testkey (0.29 sec)

  1. cmd/iam-object-store.go

    		if item.Err != nil {
    			return nil, item.Err
    		}
    
    		lastIndex := strings.HasPrefix(item.Item, policyDBPrefix)
    		listKey, trimmedItem := splitPath(item.Item, lastIndex)
    		if listKey == iamFormatFile {
    			continue
    		}
    
    		res[listKey] = append(res[listKey], trimmedItem)
    	}
    
    	return res, nil
    }
    
    // Assumes cache is locked by caller.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-jvm-test-fixtures/src/testFixtures/groovy/org/gradle/java/fixtures/AbstractTestFixturesIntegrationTest.groovy

                import org.Person;
                import org.junit.Test;
                import static org.junit.Assert.*;
    
                public class PersonTest {
                    @Test
                    public void testAny() {
                        Person anyone = PersonFixture.anyone();
                        assertEquals("John", anyone.getFirstName());
                        assertEquals("Doe", anyone.getLastName());
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 13 11:38:02 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/components/typeProvider/FirIdeDependentAnalysisSourceModuleAnalysisApiGetSuperTypesTestGenerated.java

      public void testAnonymousObject() {
        runTest("analysis/analysis-api/testData/components/typeInfoProvider/superTypes/anonymousObject.kt");
      }
    
      @Test
      @TestMetadata("any.kt")
      public void testAny() {
        runTest("analysis/analysis-api/testData/components/typeInfoProvider/superTypes/any.kt");
      }
    
      @Test
      @TestMetadata("contravariant.kt")
      public void testContravariant() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Feb 27 20:30:06 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/TreeBasedTable.java

          }
          return ((SortedMap<C, V>) backingRowMap).firstKey();
        }
    
        @Override
        public C lastKey() {
          updateBackingRowMapField();
          if (backingRowMap == null) {
            throw new NoSuchElementException();
          }
          return ((SortedMap<C, V>) backingRowMap).lastKey();
        }
    
        @CheckForNull transient SortedMap<C, V> wholeRow;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

             */
            V rightValue = uncheckedCastNullableTToT(onlyOnRight.remove(leftKey));
            if (valueEquivalence.equivalent(leftValue, rightValue)) {
              onBoth.put(leftKey, leftValue);
            } else {
              differences.put(leftKey, ValueDifferenceImpl.create(leftValue, rightValue));
            }
          } else {
            onlyOnLeft.put(leftKey, leftValue);
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

             */
            V rightValue = uncheckedCastNullableTToT(onlyOnRight.remove(leftKey));
            if (valueEquivalence.equivalent(leftValue, rightValue)) {
              onBoth.put(leftKey, leftValue);
            } else {
              differences.put(leftKey, ValueDifferenceImpl.create(leftValue, rightValue));
            }
          } else {
            onlyOnLeft.put(leftKey, leftValue);
          }
        }
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/TreeBasedTable.java

          }
          return ((SortedMap<C, V>) backingRowMap).firstKey();
        }
    
        @Override
        public C lastKey() {
          updateBackingRowMapField();
          if (backingRowMap == null) {
            throw new NoSuchElementException();
          }
          return ((SortedMap<C, V>) backingRowMap).lastKey();
        }
    
        @CheckForNull transient SortedMap<C, V> wholeRow;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    			config.EnableIndex = true
    			secureOptions := (&SecureServingOptions{
    				BindAddress: netutils.ParseIPSloppy("127.0.0.1"),
    				BindPort:    6443,
    				ServerCert: GeneratableKeyCert{
    					CertKey: CertKey{
    						CertFile: serverCertBundleFile,
    						KeyFile:  serverKeyFile,
    					},
    				},
    				DisableHTTP2Serving: true,
    				SNICertKeys:         namedCertKeys,
    			}).WithLoopback()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/etcd3/watcher.go

    		for i, kv := range getResp.Kvs {
    			lastKey = kv.Key
    			wc.sendEvent(parseKV(kv))
    			// free kv early. Long lists can take O(seconds) to decode.
    			getResp.Kvs[i] = nil
    		}
    
    		if withRev == 0 {
    			wc.initialRev = getResp.Header.Revision
    		}
    
    		// no more results remain
    		if !getResp.More {
    			return nil
    		}
    
    		preparedKey = string(lastKey) + "\x00"
    		if withRev == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 10:26:38 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		return err
    	}
    
    	if withRev != 0 {
    		options = append(options, clientv3.WithRev(withRev))
    	}
    
    	// loop until we have filled the requested limit from etcd or there are no more results
    	var lastKey []byte
    	var hasMore bool
    	var getResp *clientv3.GetResponse
    	var numFetched int
    	var numEvald int
    	// Because these metrics are for understanding the costs of handling LIST requests,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
Back to top