Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 77 of 77 for IsSame (0.21 sec)

  1. src/cmd/go/go_test.go

    		// The testgo.exe we are about to create will be built for GOOS/GOARCH,
    		// which means it will use the GOOS/GOARCH toolchain
    		// (installed in GOROOT/pkg/tool/GOOS_GOARCH).
    		// If these are not the same toolchain, then the entire standard library
    		// will look out of date (the compilers in those two different tool directories
    		// are built for different architectures and have different build IDs),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/serviceregistry_test.go

    			}, {
    				Name: "http-other",
    				Port: 90,
    			}},
    			Selector:  labels,
    			ClusterIP: "9.9.9.9",
    		},
    	})
    	fx := s.XdsUpdater.(*xdsfake.Updater)
    
    	// Delete endpoints with same IP
    	createEndpointSlice(t, s.KubeClient().Kube(), "slice1", "service", namespace, []v1.EndpointPort{{Name: "http", Port: 80}}, []string{"1.2.3.4"})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.cc

        Value result = op.getX();
        for (StringRef op_name : op.getOpNames().getAsValueRange<StringAttr>()) {
          std::string full_name = "tf." + op_name.str();
          // All ops in the sequences have the same result type as the original
          // result type.
          OperationState state(op.getLoc(), full_name, /*operands=*/{result},
                               /*types=*/{op.getType()}, /*attributes=*/{});
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 74.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    					reflect.ValueOf(transformer).Elem().FieldByName("transformers").Index(0).FieldByName("Prefix").Bytes(),
    				)
    
    				if transformerName != expectedTransformerName {
    					t.Errorf("resource %s: expected same transformer name but got %v", resource, cmp.Diff(transformerName, expectedTransformerName))
    				}
    			}
    		})
    	}
    }
    
    func TestKMSPluginHealthzTTL(t *testing.T) {
    	ctx := testContext(t)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  5. src/net/http/client_test.go

    	}
    	// Check that this doesn't crash:
    	c.Get("http://dummy.tld")
    }
    
    // Issue 4800: copy (some) headers when Client follows a redirect.
    // Issue 35104: Since both URLs have the same host (localhost)
    // but different ports, sensitive headers like Cookie and Authorization
    // are preserved.
    func TestClientCopyHeadersOnRedirect(t *testing.T) { run(t, testClientCopyHeadersOnRedirect) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/testdata/arm.s

    // This input was created by taking the instruction productions in
    // the old assembler's (5a's) grammar and hand-writing complete
    // instructions for each rule, to guarantee we cover the same space.
    
    #include "../../../../../runtime/textflag.h"
    
    TEXT	foo(SB), DUPOK|NOSPLIT, $0
    
    // ADD
    //
    //	LTYPE1 cond imsr ',' spreg ',' reg
    //	{
    //		outcode($1, $2, &$3, $5, &$7);
    //	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  7. pkg/controller/endpoint/endpoints_controller_test.go

    			}
    		})
    	}
    }
    
    func TestTruncateEndpoints(t *testing.T) {
    	testCases := []struct {
    		desc string
    		// subsetsReady, subsetsNotReady, expectedReady, expectedNotReady
    		// must all be the same length
    		subsetsReady     []int
    		subsetsNotReady  []int
    		expectedReady    []int
    		expectedNotReady []int
    	}{{
    		desc:             "empty",
    		subsetsReady:     []int{},
    		subsetsNotReady:  []int{},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
Back to top