Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 81 for Fontaine (0.26 sec)

  1. android/guava/src/com/google/common/collect/Sets.java

          }
    
          @Override
          public boolean contains(@CheckForNull Object element) {
            return set1.contains(element) && !set2.contains(element);
          }
        };
      }
    
      /**
       * Returns an unmodifiable <b>view</b> of the symmetric difference of two sets. The returned set
       * contains all elements that are contained in either {@code set1} or {@code set2} but not in
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 77.2K bytes
    - Viewed (0)
  2. cmd/object-api-multipart_test.go

    					UploadID: uploadIDs[0],
    				},
    			},
    		},
    		// listMultipartResults - 6.
    		// `KeyMarker` is set. It contains part of the objectname as `KeyPrefix`.
    		// `MaxUploads` is set equal to the number of meta data entries in the result, the result contains only one entry.
    		// Expecting the result to contain one MultipartInfo entry and IsTruncated to be false.
    		{
    			MaxUploads:  1,
    			KeyMarker:   "min",
    			IsTruncated: false,
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 77.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Iterators.java

        while (removeFrom.hasNext()) {
          if (!elementsToRetain.contains(removeFrom.next())) {
            removeFrom.remove();
            result = true;
          }
        }
        return result;
      }
    
      /**
       * Determines whether two iterators contain equal elements in the same order. More specifically,
       * this method returns {@code true} if {@code iterator1} and {@code iterator2} contain the same
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 50.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            .testEquals();
      }
    
      private static class Container<T> {
        @SuppressWarnings("unused")
        public Container(T data) {}
      }
    
      public <T extends Container<String>> void testConstructor_parameterTypes()
          throws NoSuchMethodException {
        @SuppressWarnings("rawtypes") // Reflection API skew
        Constructor<Container> constructor = Container.class.getConstructor(Object.class);
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      optional string resource = 2;
    }
    
    // GroupVersion contains the "group" and the "version", which uniquely identifies the API.
    //
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    message GroupVersion {
      optional string group = 1;
    
      optional string version = 2;
    }
    
    // GroupVersion contains the "group/version" and "version" string of a version.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 53.3K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/reflect/TypeTokenTest.java

            .testEquals();
      }
    
      private static class Container<T> {
        @SuppressWarnings("unused")
        public Container(T data) {}
      }
    
      public <T extends Container<String>> void testConstructor_parameterTypes()
          throws NoSuchMethodException {
        @SuppressWarnings("rawtypes") // Reflection API skew
        Constructor<Container> constructor = Container.class.getConstructor(Object.class);
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 88.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterators.java

        while (removeFrom.hasNext()) {
          if (!elementsToRetain.contains(removeFrom.next())) {
            removeFrom.remove();
            result = true;
          }
        }
        return result;
      }
    
      /**
       * Determines whether two iterators contain equal elements in the same order. More specifically,
       * this method returns {@code true} if {@code iterator1} and {@code iterator2} contain the same
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jan 30 00:14:39 GMT 2024
    - 50.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                    "should use a variable instead of a hard-coded path " + sysPath,
                                    dependency);
                        } else if (sysPath.contains("${basedir}") || sysPath.contains("${project.basedir}")) {
                            addViolation(
                                    problems,
                                    Severity.WARNING,
                                    Version.V20,
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 65K bytes
    - Viewed (0)
  9. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                this...
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 65.7K bytes
    - Viewed (0)
  10. istioctl/pkg/describe/describe.go

    		if container.Name != "istio-proxy" && container.Name != "istio-operator" {
    			if container.SecurityContext != nil && container.SecurityContext.RunAsUser != nil {
    				if *container.SecurityContext.RunAsUser == UserID {
    					fmt.Fprintf(writer, "WARNING: User ID (UID) 1337 is reserved for the sidecar proxy.\n")
    				}
    			}
    		}
    	}
    
    	fmt.Fprintf(writer, "Pod: %s\n", kname(pod.ObjectMeta))
    Go
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Sat Apr 13 05:23:38 GMT 2024
    - 50.4K bytes
    - Viewed (0)
Back to top