Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 838 for RES (0.13 sec)

  1. src/cmd/go/internal/web/http.go

    		fmt.Fprintf(os.Stderr, "# get %s: %v (%.3fs)\n", fetched.Redacted(), res.Status, time.Since(start).Seconds())
    	}
    
    	r := &Response{
    		URL:        fetched.Redacted(),
    		Status:     res.Status,
    		StatusCode: res.StatusCode,
    		Header:     map[string][]string(res.Header),
    		Body:       res.Body,
    	}
    
    	if res.StatusCode != http.StatusOK {
    		contentType := res.Header.Get("Content-Type")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 10 17:34:27 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/build/relnote/links.go

    				if i > 0 {
    					res = append(res, &md.Plain{Text: text[:i]})
    				}
    				res = append(res, &md.Plain{Text: text[i : i+1]})
    				text = text[i+1:]
    			}
    		} else {
    			res = append(res, in)
    		}
    	}
    	return res
    }
    
    // symbolLinkText returns the text of a possible symbol link.
    // It is given a slice of Inline elements and an index into the slice.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  3. src/cmd/vet/testdata/httpresponse/httpresponse.go

    package httpresponse
    
    import (
    	"log"
    	"net/http"
    )
    
    func goodHTTPGet() {
    	res, err := http.Get("http://foo.com")
    	if err != nil {
    		log.Fatal(err)
    	}
    	defer res.Body.Close()
    }
    
    func badHTTPGet() {
    	res, err := http.Get("http://foo.com")
    	defer res.Body.Close() // ERROR "using res before checking for errors"
    	if err != nil {
    		log.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 26 21:34:18 UTC 2021
    - 509 bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top