Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 558 for zout (0.04 sec)

  1. pilot/pkg/security/authz/builder/testdata/http/extended-single-policy-out.yaml

    Kuat <******@****.***> 1711363165 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/compile.cc

      if (flags.dump_fetch_nodes) {
        std::set<string> nodes;
        for (const tf2xla::Fetch& fetch : config.fetch()) {
          nodes.insert(fetch.id().node_name());
        }
        std::cout << absl::StrJoin(nodes, ",");
        return absl::OkStatus();
      }
    
      // Read and initialize the graph.
      if (flags.graph.empty()) {
        return errors::InvalidArgument("Must specify --graph");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

    Kuat <******@****.***> 1714759362 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. pilot/pkg/security/authz/builder/testdata/tcp/deny-both-http-tcp-out.yaml

    Kuat <******@****.***> 1697560546 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 16:35:46 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. src/cmd/go/internal/cache/cache.go

    	size, err := io.Copy(h, file)
    	if err != nil {
    		return OutputID{}, 0, err
    	}
    	var out OutputID
    	h.Sum(out[:0])
    
    	// Copy to cached output file (if not already present).
    	if err := c.copyFile(file, out, size); err != nil {
    		return out, size, err
    	}
    
    	// Add to cache index.
    	return out, size, c.putIndexEntry(id, out, size, allowVerify)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

              shared_name = "shared_name",
              batching_queue = "batching_queue",
              enable_large_batch_splitting = false,
              Tin = [f32],
              Tcaptured = [f32],
              Tout = [f32]} : 1
    
        Note that the trailing number indicates the number of results.
      }];
    
      let arguments = (ins
        Variadic<TFTensorType>:$args,
        StrAttr:$device,
        SymbolRefAttr:$f,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		// if *arg0 == arg1 {
    		//   *arg0 = arg2
    		//   return (true, memory)
    		// } else {
    		//   return (false, memory)
    		// }
    		// MOV  $0, Rout
    		// LR	(Rarg0), Rtmp
    		// BNE	Rtmp, Rarg1, 3(PC)
    		// SC	Rarg2, (Rarg0), Rtmp
    		// BNE	Rtmp, ZERO, -3(PC)
    		// MOV  $1, Rout
    		{name: "LoweredAtomicCas32", argLength: 4, reg: gpcas, resultNotInArgs: true, faultOnNilArg0: true, hasSideEffects: true, unsafePoint: true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  8. src/encoding/json/encode_test.go

    			vf = float32(f)
    		}
    		bout, err := Marshal(vf)
    		if err != nil {
    			t.Errorf("Marshal(%T(%g)) error: %v", vf, vf, err)
    			nfail++
    			return
    		}
    		out := string(bout)
    
    		// result must convert back to the same float
    		g, err := strconv.ParseFloat(out, bits)
    		if err != nil {
    			t.Errorf("ParseFloat(%q) error: %v", out, err)
    			nfail++
    			return
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v1/zz_generated.deepcopy.go

    		in, out := &in.Pods, &out.Pods
    		*out = new(PodsMetricSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.Resource != nil {
    		in, out := &in.Resource, &out.Resource
    		*out = new(ResourceMetricSource)
    		(*in).DeepCopyInto(*out)
    	}
    	if in.ContainerResource != nil {
    		in, out := &in.ContainerResource, &out.ContainerResource
    		*out = new(ContainerResourceMetricSource)
    		(*in).DeepCopyInto(*out)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 16.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/autoscaling/v2beta1/zz_generated.deepcopy.go

    		**out = **in
    	}
    	if in.LastScaleTime != nil {
    		in, out := &in.LastScaleTime, &out.LastScaleTime
    		*out = (*in).DeepCopy()
    	}
    	if in.CurrentMetrics != nil {
    		in, out := &in.CurrentMetrics, &out.CurrentMetrics
    		*out = make([]MetricStatus, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.Conditions != nil {
    		in, out := &in.Conditions, &out.Conditions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 15.4K bytes
    - Viewed (0)
Back to top