Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for IsSame (0.49 sec)

  1. guava-testlib/src/com/google/common/testing/ClassSanityTester.java

          return this;
        }
    
        /**
         * Tests {@link Object#equals} and {@link Object#hashCode} against the return values of the
         * static methods, by asserting that when equal parameters are passed to the same static method,
         * the return value should also be equal; and vice versa.
         *
         * <p>Test fails if default value cannot be determined for a constructor or factory method
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 32.7K bytes
    - Viewed (0)
  2. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    		expectedVolumesFailedReconstruction []string
    		verifyFunc                          func(rcInstance *reconciler, fakePlugin *volumetesting.FakeVolumePlugin) error
    	}{
    		{
    			name: "when two pods are using same volume and both are deleted",
    			volumePaths: []string{
    				filepath.Join("pod1", "volumes", "fake-plugin", "pvc-abcdef"),
    				filepath.Join("pod2", "volumes", "fake-plugin", "pvc-abcdef"),
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/qos_container_manager_linux.go

    			return nil
    		}
    
    		// If the resource can adjust the ResourceConfig to increase likelihood of
    		// success, call the adjustment function here.  Otherwise, the Update() will
    		// be called again with the same values.
    		for resource, percentReserve := range m.qosReserved {
    			switch resource {
    			case v1.ResourceMemory:
    				m.retrySetMemoryReserve(qosConfigs, percentReserve)
    			}
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

                "coneType",
                "analysisContext",
                "fe10Type",
    
                // These properties are made obsolete by their counterparts without `*IfNonLocal` (e.g. `classId`), which contain the same
                // values.
                "classIdIfNonLocal",
                "containingClassIdIfNonLocal",
                "callableIdIfNonLocal",
            )
    
            private val symbolImplementationPackageNames = listOf(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  5. cmd/erasure-healing-common.go

    				partsMetadata[i] = FileInfo{}
    				metaErrs[i] = errFileCorrupt
    				continue
    			}
    
    			if !meta.Deleted {
    				if len(meta.Erasure.Distribution) != len(onlineDisks) {
    					// Erasure distribution is not the same as onlineDisks
    					// attempt a fix if possible, assuming other entries
    					// might have the right erasure distribution.
    					partsMetadata[i] = FileInfo{}
    					metaErrs[i] = errFileCorrupt
    					continue
    				}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. RELEASE.md

        *   Allow LinearOperator to broadcast.
        *   SavedModelBuilder will now deduplicate asset names that point to files
            with the same basename and the same contents. Note that this may result
            in new asset files included in SavedModels in cases where assets with
            the same name but different contents were previously overwriting each
            other.
    
    ## Thanks to our Contributors
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    // applied (see the example in mod_get_patchmod.txt).
    //
    // There are a few other ambiguous cases to resolve, too. A package can exist in
    // two different modules at the same version: for example, the package
    // example.com/foo might be found in module example.com and also in module
    // example.com/foo, and those modules may have independent v0.1.0 tags — so the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_test.go

    		testInboundListenerConfigWithSidecarIngressPortMergeServicePort(t, getProxy(),
    			buildServiceWithPort("test1.com", 80, protocol.HTTP, tnow.Add(1*time.Second)))
    	})
    	t.Run("merge sidecar ingress and service ports, same port in both sidecar and service", func(t *testing.T) {
    		test.SetForTest(t, &features.EnableSidecarServiceInboundListenerMerge, true)
    		testInboundListenerConfigWithSidecar(t, getProxy(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/kubeconfig/kubeconfig_test.go

    			kubeConfig:         invalidConfig,
    			expectedError:      true,
    		},
    		{ // if KubeConfig is equal to the existingKubeConfig - refers to the same cluster -, use the existing (Test idempotency)
    			name:               "KubeConfig refers to the same cluster",
    			existingKubeConfig: config,
    			kubeConfig:         config,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:04:18 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

                    check(this is KotlinStandaloneDeclarationProvider) {
                        "`KotlinStandaloneDeclarationProvider` can only be merged into a combined declaration provider of the same type."
                    }
                }
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top