Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 805 for RES (0.03 sec)

  1. maven-compat/src/test/java/org/apache/maven/repository/metadata/DefaultClasspathTransformationTestType.java

        void testCompileClasspathTransform() throws Exception {
            ClasspathContainer res;
    
            res = transform.transform(graph, ArtifactScopeEnum.compile, false);
    
            assertNotNull(res, "null classpath container after compile transform");
            assertNotNull(res.getClasspath(), "null classpath after compile transform");
            assertEquals(3, res.getClasspath().size(), "compile classpath should have 3 entries");
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. src/testing/match_test.go

    		{"A/B", res("A", "B")},
    		{"A/B/", res("A", "B", "")},
    		{"/A/B/", res("", "A", "B", "")},
    		{"[A]/(B)", res("[A]", "(B)")},
    		{"[/]/[/]", res("[/]", "[/]")},
    		{"[/]/[:/]", res("[/]", "[:/]")},
    		{"/]", res("", "]")},
    		{"]/", res("]", "")},
    		{"]/[/]", res("]", "[/]")},
    		{`([)/][(])`, res(`([)/][(])`)},
    		{"[(]/[)]", res("[(]", "[)]")},
    
    		{"A/B|C/D", alt(res("A", "B"), res("C", "D"))},
    
    		// Faulty patterns
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 14:48:54 UTC 2022
    - 8K bytes
    - Viewed (0)
  3. pilot/test/xdstest/extract.go

    	res := map[string]*route.RouteConfiguration{}
    	for _, l := range rc {
    		res[l.Name] = l
    	}
    	return res
    }
    
    func ExtractListenerFilters(l *listener.Listener) map[string]*listener.ListenerFilter {
    	res := map[string]*listener.ListenerFilter{}
    	for _, lf := range l.ListenerFilters {
    		res[lf.Name] = lf
    	}
    	return res
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.td

    def LiftBatchMatMul : Pat<
      (TF_BatchMatMulV2Op:$res $x, $y, $adj_x, $adj_y, $grad_x, $grad_y),
      (LiftAsTFPartitionedCall<"composite_batch_matmul_fn">
        (ArgumentList $x, $y),
        (ResultList $res),
        (NamedAttributeList
          (NamedAttr<"adj_x"> $adj_x),
          (NamedAttr<"adj_y"> $adj_y))),
      [(IsNotInLiftedFunc $res)], [], (addBenefit 1)>;
    
    def LiftEinsum : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Dec 10 05:52:02 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  5. pkg/lazy/lazy_test.go

    		l := NewWithRetry(func() (int32, error) {
    			res := computations.Inc()
    			if res > 2 {
    				return res, nil
    			}
    
    			return res, fmt.Errorf("not yet")
    		})
    		res, err := l.Get()
    		assert.Error(t, err)
    		assert.Equal(t, res, 1)
    
    		res, err = l.Get()
    		assert.Error(t, err)
    		assert.Equal(t, res, 2)
    
    		res, err = l.Get()
    		assert.NoError(t, err)
    		assert.Equal(t, res, 3)
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 17:36:41 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. pilot/pkg/xds/sds.go

    			results = append(results, cachedItem)
    			cached++
    			continue
    		}
    		regenerated++
    		res := s.generate(sr, configClusterSecrets, proxyClusterSecrets, proxy)
    		if res != nil {
    			s.cache.Add(sr, req, res)
    			results = append(results, res)
    		}
    	}
    	return results, model.XdsLogDetails{
    		Incremental:    updatedSecrets != nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions_fusion.td

        (ArgumentList $lhs, $rhs, $bias),
        (ResultList $res),
        (NamedAttributeList
          (NamedAttr<"dot_dimension_numbers"> $dot_dimension_numbers),
          (NamedAttr<"precision_config"> (DefaultOrNullAttr $precision_config)))),
      [(IsNotInLiftedFunc $res), (IsStableHLOConstantOp $bias)], [], (addBenefit 5)>;
    
    def LiftConvWithBiasDynamic : Pat<
      (StableHLO_AddOp:$res
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. pilot/pkg/xds/statusgen.go

    	res, detail, err := sg.handleInternalRequest(proxy, w, req)
    	return res, nil, detail, true, err
    }
    
    func (sg *StatusGen) handleInternalRequest(_ *model.Proxy, w *model.WatchedResource, _ *model.PushRequest) (model.Resources, model.XdsLogDetails, error) {
    	res := model.Resources{}
    
    	switch w.TypeUrl {
    	case TypeDebugSyncronization:
    		res = sg.debugSyncz()
    	case TypeDebugConfigDump:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. pkg/api/v1/service/util_test.go

    }
    
    func TestExternallyAccessible(t *testing.T) {
    	checkExternallyAccessible := func(expect bool, service *v1.Service) {
    		t.Helper()
    		res := ExternallyAccessible(service)
    		if res != expect {
    			t.Errorf("Expected ExternallyAccessible = %v, got %v", expect, res)
    		}
    	}
    
    	checkExternallyAccessible(false, &v1.Service{})
    	checkExternallyAccessible(false, &v1.Service{
    		Spec: v1.ServiceSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 01 15:18:45 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. src/net/http/filetransport_test.go

    	for _, urlstr := range fooURLs {
    		res, err := c.Get(urlstr)
    		check("Get "+urlstr, err)
    		if res.StatusCode != 200 {
    			t.Errorf("for %s, StatusCode = %d, want 200", urlstr, res.StatusCode)
    		}
    		if res.ContentLength != -1 {
    			t.Errorf("for %s, ContentLength = %d, want -1", urlstr, res.ContentLength)
    		}
    		if res.Body == nil {
    			t.Fatalf("for %s, nil Body", urlstr)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 17:07:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top