Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 180 for _Equal (0.34 sec)

  1. pilot/pkg/networking/core/listener_test.go

    								assert.Equal(t, true, hcm.GetSetCurrentClientCertDetails().GetSubject().GetValue(), "subject")
    								assert.Equal(t, true, hcm.GetSetCurrentClientCertDetails().GetDns(), "dns")
    								assert.Equal(t, true, hcm.GetSetCurrentClientCertDetails().GetUri(), "uri")
    								assert.Equal(t, true, hcm.GetNormalizePath().GetValue(), "normalize path")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_test.go

    				t.Fatal(err)
    			}
    			serverHello, ok := reply.(*serverHelloMsg)
    			if !ok {
    				t.Fatalf("didn't get ServerHello message in reply. Got %v\n", reply)
    			}
    			if tt.wantSupportedPoints {
    				if !bytes.Equal(serverHello.supportedPoints, []uint8{pointFormatUncompressed}) {
    					t.Fatal("incorrect ec_point_format extension from server")
    				}
    			} else {
    				if len(serverHello.supportedPoints) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    	l := NewReaderSize(buf, minReadBufferSize)
    	line, isPrefix, err := l.ReadLine()
    	if !isPrefix || !bytes.Equal(line, data[:minReadBufferSize]) || err != nil {
    		t.Errorf("bad result for first line: got %q want %q %v", line, data[:minReadBufferSize], err)
    	}
    	data = data[len(line):]
    	line, isPrefix, err = l.ReadLine()
    	if !isPrefix || !bytes.Equal(line, data[:minReadBufferSize]) || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  4. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go

    			})
    			if !status.IsSuccess() {
    				return
    			}
    
    			result, status := testCtx.p.PreFilter(testCtx.ctx, testCtx.state, tc.pod)
    			t.Run("prefilter", func(t *testing.T) {
    				assert.Equal(t, tc.want.preFilterResult, result)
    				testCtx.verify(t, tc.want.prefilter, initialObjects, result, status)
    			})
    			if status.IsSkip() {
    				return
    			}
    			unschedulable := status.Code() != framework.Success
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

         * Tests to see if two <code>SmbFile</code> objects are equal. Two
         * SmbFile objects are equal when they reference the same SMB
         * resource. More specifically, two <code>SmbFile</code> objects are
         * equals if their server IP addresses are equal and the canonicalized
         * representation of their URLs, minus authentication parameters, are
         * case insensitively and lexographically equal.
         * <br>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  6. cmd/object-api-multipart_test.go

    					Object:   objectNames[0],
    					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",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	for _, qualAST := range q1.Qualifiers {
    		qual := qualAST.(*Qualifier)
    		if len(qual.Exprs) == 0 {
    			m[qual.Name] = true
    		}
    	}
    	rq := q1.Qualifiers
    	for _, qualAST := range q2AST.(*Qualifiers).Qualifiers {
    		qual := qualAST.(*Qualifier)
    		if len(qual.Exprs) > 0 {
    			rq = append(rq, qualAST)
    		} else if !m[qual.Name] {
    			rq = append(rq, qualAST)
    			m[qual.Name] = true
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	if len(original) != len(modified) {
    		return false, nil
    	}
    	for i, modifiedItem := range modified {
    		equal, err := mergeKeyValueEqual(original[i], modifiedItem, mergeKey)
    		if err != nil || !equal {
    			return equal, err
    		}
    	}
    	return true, nil
    }
    
    // diffListsOfScalars returns 2 lists, the first one is addList and the second one is deletionList.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    }
    
    func assertControllerEmpty(t *testing.T, sd *Controller) {
    	assert.Equal(t, len(sd.services.servicesBySE), 0)
    	assert.Equal(t, len(sd.serviceInstances.ip2instance), 0)
    	assert.Equal(t, len(sd.serviceInstances.instances), 0)
    	assert.Equal(t, len(sd.serviceInstances.instancesBySE), 0)
    	assert.Equal(t, len(sd.serviceInstances.instancesByHostAndPort), 0)
    	assert.Equal(t, sd.workloadInstances.Empty(), true)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    			if stale != (transformer.Name != testCase.Name) {
    				t.Fatalf("%s: wrong stale information on reading using %s transformer, should be %v", testCase.Name, transformer.Name, testCase.Name == transformer.Name)
    			}
    			if !bytes.Equal(untransformedData, originalText) {
    				t.Fatalf("%s: %s transformer transformed data incorrectly. Expected: %v, got %v", testCase.Name, transformer.Name, originalText, untransformedData)
    			}
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
Back to top