Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 59 of 59 for src2 (0.32 sec)

  1. pkg/kubelet/network/dns/dns_test.go

    	}
    	for i, tc := range testCases {
    		ns, srch, opts, err := parseResolvConf(strings.NewReader(tc.data))
    		if !tc.isErr {
    			require.NoError(t, err)
    			assert.EqualValues(t, tc.nameservers, ns, "test case [%d]: name servers", i)
    			assert.EqualValues(t, tc.searches, srch, "test case [%d] searches", i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.cc

      const CallGraph call_graph(module);
    
      // Visit functions bottom up when doing the analysis. Note that SCC iterator
      // has the property that if there is an edge from SCC1->SCC2, SCC1 is visited
      // after SCC2, i.e., the graph is traversed bottom up just the way we want.
      auto scc_begin = llvm::scc_begin(&call_graph);
      auto scc_end = llvm::scc_end(&call_graph);
      for (auto& scc : make_range(scc_begin, scc_end)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/util/util.go

    // type of Any
    func MergeAnyWithAny(dst *anypb.Any, src *anypb.Any) (*anypb.Any, error) {
    	// Assuming that Pilot is compiled with this type [which should always be the case]
    	var err error
    
    	// get an object of type used by this message
    	dstX, err := dst.UnmarshalNew()
    	if err != nil {
    		return nil, err
    	}
    
    	// get an object of type used by this message
    	srcX, err := src.UnmarshalNew()
    	if err != nil {
    		return nil, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion_test.go

    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "allowed-1",
    		},
    		Ports:    ports,
    		Hostname: "svc2.allowed-1.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "allowed-2",
    		},
    		Ports:    ports,
    		Hostname: "svc2.allowed-2.svc.domain.suffix",
    	},
    	{
    		Attributes: model.ServiceAttributes{
    			Namespace: "allowed-1",
    		},
    		Ports:    ports,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf-with-tf2xla-hlo-importer.mlir

        // CHECK: %[[red1:.*]] = mhlo.reduce(%[[cmul]] init: %[[convert_init]]) applies mhlo.add across dimensions = [0, 1, 2] : (tensor<8x8x8x8xf32>, tensor<f32>) -> tensor<8xf32>
        // CHECK: %[[scr2:.*]] = mhlo.convert %[[red1]] : tensor<8xf32>
    
        // CHECK: %[[mul2:.*]] = mhlo.multiply %arg2, %[[scr1]] : tensor<8xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 06 15:32:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc.go

    		return fmt.Errorf("oidc: could not parse claim sources: %v", err)
    	}
    
    	src, ok := claimToSource[r.claim]
    	if !ok {
    		// No distributed claim present.
    		return nil
    	}
    	ep, ok := sources[src]
    	if !ok {
    		return fmt.Errorf("id token _claim_names contained a source %s missing in _claims_sources", src)
    	}
    	if ep.URL == "" {
    		// This is maybe an aggregated claim (ep.JWT != "").
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/scanner_test.go

    		got.init(strings.NewReader(want.src), func(line, col uint, msg string) {
    			t.Errorf("%s:%d:%d: %s", want.src, line, col, msg)
    		}, 0)
    		got.next()
    		if got.tok != want.tok {
    			t.Errorf("%s: got %s; want %s", want.src, got.tok, want.tok)
    			continue
    		}
    		if (got.tok == _Name || got.tok == _Literal) && got.lit != want.src {
    			t.Errorf("%s: got %q; want %q", want.src, got.lit, want.src)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  8. src/image/png/reader.go

    	case *image.Alpha16:
    		srcPix = src.(*image.Alpha16).Pix
    		dstPix, stride, rect = target.Pix, target.Stride, target.Rect
    		bytesPerPixel = 2
    	case *image.Gray:
    		srcPix = src.(*image.Gray).Pix
    		dstPix, stride, rect = target.Pix, target.Stride, target.Rect
    		bytesPerPixel = 1
    	case *image.Gray16:
    		srcPix = src.(*image.Gray16).Pix
    		dstPix, stride, rect = target.Pix, target.Stride, target.Rect
    		bytesPerPixel = 2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    slupsk.pl slz.br sm sm.ua small-web.org smart smartlabeling.scw.cloud smile smola.no smushcdn.com smøla.no sn sn.cn snaase.no snasa.no sncf snillfjord.no snoasa.no snowflake.app snåase.no snåsa.no so so.gov.pl so.it sobetsu.hokkaido.jp soc.dz soc.lk soc.srcf.net soccer sochi.su social society.museum sodegaura.chiba.jp soeda.fukuoka.jp softbank software software.aero sogndal.no sogne.no sohu soja.okayama.jp soka.saitama.jp sokndal.no sola.no solar sologne.museum solund.no solutions soma.fukushima.jp somna.no...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top