Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 344 for IsSame (0.09 sec)

  1. guava/src/com/google/common/reflect/Types.java

       * that an abstract method is unimplemented. So instead we use a dynamic proxy to get an
       * implementation. If the method being called on the {@code TypeVariable} instance has the same
       * name as one of the public methods of {@link TypeVariableImpl}, the proxy calls the same method
       * on its instance of {@code TypeVariableImpl}. Otherwise it throws {@link
       * UnsupportedOperationException}; this should only apply to {@code getAnnotatedBounds()}. This
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/index/suffixarray/suffixarray_test.go

    	}
    
    	// if n >= 0 the number of results is limited --- unless n >= all results,
    	// we may obtain different positions from the Index and from find (because
    	// Index may not find the results in the same order as find) => in general
    	// we cannot simply check that the res and exp lists are equal
    
    	// check that each result is in fact a correct match and there are no duplicates
    	slices.Sort(res)
    	for i, r := range res {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/networking/v1beta1/generated.proto

    message IngressClassSpec {
      // controller refers to the name of the controller that should handle this
      // class. This allows for different "flavors" that are controlled by the
      // same controller. For example, you may have different parameters for the
      // same implementing controller. This should be specified as a
      // domain-prefixed path no more than 250 characters in length, e.g.
      // "acme.io/ingress-controller". This field is immutable.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/symbols/AbstractSymbolTest.kt

                val expectedFile = getTestDataFileSiblingPath().toFile()
                if (!testServices.assertions.doesEqualToFile(expectedFile, actual)) {
                    error("Restored content is not the same. Actual:\n$actual")
                }
            } catch (e: Throwable) {
                if (directiveToIgnore == null) throw e
                failed = true
            }
    
            if (!failed) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/TreeBasedTable.java

       * keys.
       *
       * <p>The method signature specifies {@code R extends Comparable} with a raw {@link Comparable},
       * instead of {@code R extends Comparable<? super R>}, and the same for {@code C}. That's
       * necessary to support classes defined without generics.
       */
      @SuppressWarnings("rawtypes") // https://github.com/google/guava/issues/989
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/operations/overlay/DocumentOverlayTest.kt

                    * property(a, literal(33)) -> ShadowedProperty(underlayProperty=property(a, literal(3)),...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/internal/upload/reports.go

    			// conversely, on Windows, err may be nil and
    			// the file not deleted if anyone has it open.
    			u.logger.Printf("%v failed to remove %s", err, f)
    		}
    	}
    }
    
    // createReport for all the count files for the same date.
    // returns the absolute path name of the file containing the report
    func (u *uploader) createReport(start time.Time, expiryDate string, countFiles []string, lastWeek string) (string, error) {
    	uploadOK := true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/multicluster.go

    				configStore, options.XDSUpdater,
    				m.opts.MeshWatcher,
    				serviceentry.WithClusterID(cluster.ID),
    				serviceentry.WithNetworkIDCb(kubeRegistry.Network))
    			// Services can select WorkloadEntry from the same cluster. We only duplicate the Service to configure kube-dns.
    			kubeController.workloadEntryController.AppendWorkloadHandler(kubeRegistry.WorkloadInstanceHandler)
    			// ServiceEntry selects WorkloadEntry from remote cluster
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/join/kubelet.go

    	if err != nil {
    		klog.Warning(err)
    	}
    
    	// Make sure to exit before TLS bootstrap if a Node with the same name exist in the cluster
    	// and it has the "Ready" status.
    	// A new Node with the same name as an existing control-plane Node can cause undefined
    	// behavior and ultimately control-plane failure.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/runtime/mstats.go

    }
    
    var memstats mstats
    
    // A MemStats records statistics about the memory allocator.
    type MemStats struct {
    	// General statistics.
    
    	// Alloc is bytes of allocated heap objects.
    	//
    	// This is the same as HeapAlloc (see below).
    	Alloc uint64
    
    	// TotalAlloc is cumulative bytes allocated for heap objects.
    	//
    	// TotalAlloc increases as heap objects are allocated, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
Back to top