Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for TT (0.04 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * <tt>getType()</tt>, <tt>getDomainName()</tt>, <tt>getAccountName()</tt>,
     * or <tt>toString()</tt> is called, the names will attempt to be
     * resolved. If the names cannot be resolved (e.g. due to temporary
     * network failure), the said methods will return default values (usually
     * <tt>S-X-Y-Z</tt> strings of fragments of).
     * <p>
     * Alternatively <tt>getSecurity(true)</tt> may be used to resolve all
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_builder_test.go

    			// Set cluster wrapping with HTTP2 options if port protocol is HTTP2
    			if tt.port.Protocol == protocol.HTTP2 {
    				setH2Options(ec)
    			}
    			destRule := proxy.SidecarScope.DestinationRule(model.TrafficDirectionOutbound, proxy, tt.service.Hostname)
    			eb := endpoints.NewCDSEndpointBuilder(proxy, cb.req.Push, tt.cluster.Name,
    				model.TrafficDirectionOutbound, "", tt.service.Hostname, tt.port.Port,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/runtime/framework_test.go

    			if d := cmp.Diff(result, tt.wantPreFilterResult); d != "" {
    				t.Errorf("wrong status. got: %v, want: %v, diff: %s", result, tt.wantPreFilterResult, d)
    			}
    			if status.Code() != tt.wantStatusCode {
    				t.Errorf("wrong status code. got: %v, want: %v", status, tt.wantStatusCode)
    			}
    			skipped := state.SkipFilterPlugins
    			if d := cmp.Diff(skipped, tt.wantSkippedPlugins); d != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    		},
    	}
    
    	for _, tt := range tests {
    		tt := tt
    		tp := true
    		for i := range tt.schema.XValidations {
    			tt.schema.XValidations[i].OptionalOldSelf = &tp
    		}
    
    		t.Run(tt.name, func(t *testing.T) {
    			// t.Parallel()
    
    			ctx := context.TODO()
    			celValidator := validator(tt.schema, tt.schema, true, model.SchemaDeclType(tt.schema, false), celconfig.PerCallLimit)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_test.go

    			},
    		},
    	}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			opt := buildClusterOpts{
    				mutable: newClusterWrapper(tt.cluster),
    				port:    &model.Port{Port: 80},
    			}
    			addTelemetryMetadata(tt.cluster, opt.port, tt.service, tt.direction, tt.svcInsts)
    			if opt.mutable.cluster != nil && !reflect.DeepEqual(opt.mutable.cluster.Metadata, tt.want) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  6. src/net/http/serve_test.go

    				if rr.Code != tt.code {
    					t.Errorf("%s %s %s = %d, want %d", tt.method, tt.host, tt.url, rr.Code, tt.code)
    				}
    				break
    			}
    			if !tt.redirOk {
    				t.Errorf("%s %s %s, unexpected redirect", tt.method, tt.host, tt.url)
    				break
    			}
    			turl = rr.HeaderMap.Get("Location")
    			tries--
    		}
    		if tries < 0 {
    			t.Errorf("%s %s %s, too many redirects", tt.method, tt.host, tt.url)
    		}
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    			i:    0,
    			j:    2,
    			want: []pairPtr{{5, 6, &c}, {3, 4, &b}, {1, 2, &a}},
    		},
    	}
    
    	for i, tt := range tests {
    		inStr := fmt.Sprint(tt.in)
    		Swapper(tt.in)(tt.i, tt.j)
    		if !DeepEqual(tt.in, tt.want) {
    			t.Errorf("%d. swapping %v and %v of %v = %v; want %v", i, tt.i, tt.j, inStr, tt.in, tt.want)
    		}
    	}
    }
    
    // TestUnaddressableField tests that the reflect package will not allow
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go

    			p.enableNodeInclusionPolicyInPodTopologySpread = tt.enableNodeInclusionPolicy
    
    			cs := framework.NewCycleState()
    			if _, s := p.PreFilter(ctx, cs, tt.preemptor); !s.IsSuccess() {
    				t.Fatal(s.AsError())
    			}
    
    			deletedPod := tt.deletedPod
    			if tt.deletedPodIdx < len(tt.existingPods) && tt.deletedPodIdx >= 0 {
    				deletedPod = tt.existingPods[tt.deletedPodIdx]
    			}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 143.1K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/gateway_test.go

    		},
    	}
    
    	for _, tt := range cases {
    		t.Run(tt.name, func(t *testing.T) {
    			Configs := make([]config.Config, 0)
    			Configs = append(Configs, tt.gateways...)
    			Configs = append(Configs, tt.virtualServices...)
    			cg := NewConfigGenTest(t, TestOptions{
    				Configs: Configs,
    			})
    			cg.MemRegistry.WantGetProxyServiceTargets = tt.node.ServiceTargets
    			proxy := cg.SetupProxy(&proxyGateway)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  10. src/reflect/value.go

    			ch.mustBeExported()
    			tt := (*chanType)(unsafe.Pointer(ch.typ()))
    			if ChanDir(tt.Dir)&RecvDir == 0 {
    				panic("reflect.Select: RecvDir case using send-only channel")
    			}
    			rc.ch = ch.pointer()
    			rc.typ = toRType(&tt.Type)
    			rc.val = unsafe_New(tt.Elem)
    		}
    	}
    
    	chosen, recvOK = rselect(runcases)
    	if runcases[chosen].dir == SelectRecv {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top