Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 68 for RES (0.03 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                boolean failure = false;
                for (InterimResult r : interimResults) {
                    DefaultProjectBuildingResult res;
                    try {
                        Model model = modelBuilder.buildRawModel(r.request);
                        res = new DefaultProjectBuildingResult(
                                model.getId(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix_test.go

    	for _, in := range ins {
    		_, res, err := r.goLookupIPCNAMEOrder(context.Background(), "ip", in, mode, nil)
    		if err != nil {
    			t.Errorf("expected err == nil, but got error: %v", err)
    		}
    		if res.String() != lookupRes {
    			t.Errorf("goLookupIPCNAMEOrder(%v): got %v, want %v", in, res, lookupRes)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      }];
    
      let arguments = (ins
        DefaultValuedStrAttr<StrAttr, "">:$container,
        DefaultValuedStrAttr<StrAttr, "">:$shared_name
      );
    
      let results = (outs
        Res<TF_ResourceTensor, "", [TF_VariableAlloc]>:$resource
      );
    
      DerivedTypeAttr dtype = DerivedTypeAttr<
          "return getElementTypeOrSelf(resource_subtype());">;
      DerivedAttr shape = DerivedAttr<
          "ShapedType",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. src/net/http/transport.go

    		if (re.res == nil) == (re.err == nil) {
    			panic(fmt.Sprintf("internal error: exactly one of res or err should be set; nil=%v", re.res == nil))
    		}
    		if debugRoundTrip {
    			req.logf("resc recv: %p, %T/%#v", re.res, re.err, re.err)
    		}
    		if re.err != nil {
    			return nil, pc.mapRoundTripError(req, startBytesWritten, re.err)
    		}
    		return re.res, nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  5. src/cmd/internal/testdir/testdir_test.go

    	// <autogenerated> lines are impossible to match so those are filtered out.
    	var res []string
    	for _, line := range strings.Split(out, "\n") {
    		if strings.HasSuffix(line, "\r") { // remove '\r', output by compiler on windows
    			line = line[:len(line)-1]
    		}
    		if strings.HasPrefix(line, "\t") {
    			res[len(res)-1] += "\n" + line
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

    // If the input `tensor` has scale/zero_point, `res` should have quantized
    // type, thus none stats op is required and nullptr is returned.
    // If the min max information is invalid, nullptr is returned.
    mlir::Operation* ConvertMinMaxToStatsOp(const TensorT& tensor, OpBuilder b,
                                            Value res) {
      // If the `tensor` has scale/zero_point, it must have been quantized, then the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/route/route.go

    	if model.UseGatewaySemantics(virtualService) {
    		res := make([]*model.Service, 0, len(matchingRegistryServices))
    		for _, s := range matchingRegistryServices {
    			if s.Attributes.Namespace != virtualService.Namespace && node.ConfigNamespace != virtualService.Namespace {
    				continue
    			}
    			res = append(res, s)
    		}
    		if len(res) == 0 {
    			return nil
    		}
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 56.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	}
    	A2e(ebcdicBytes)
    	return
    }
    func ZosEbcdicBytesToString(b []byte, trimRight bool) (str string) {
    	res := make([]byte, len(b))
    	copy(res, b)
    	E2a(res)
    	if trimRight {
    		str = string(bytes.TrimRight(res, " \x00"))
    	} else {
    		str = string(res)
    	}
    	return
    }
    
    func fdToPath(dirfd int) (path string, err error) {
    	var buffer [1024]byte
    	// w_ctrl()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/dwarf.go

    		}(compressedCount, dwarfp[i].syms)
    		compressedCount++
    	}
    	res := make([]compressedSect, compressedCount)
    	for ; compressedCount > 0; compressedCount-- {
    		r := <-resChannel
    		res[r.index] = r
    	}
    
    	ldr := ctxt.loader
    	var newDwarfp []dwarfSecInfo
    	Segdwarf.Sections = Segdwarf.Sections[:0]
    	for _, z := range res {
    		s := z.syms[0]
    		if z.compressed == nil {
    			// Compression didn't help.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  10. src/net/netip/netip_test.go

    		if got != tt.want {
    			t.Errorf("IsSingleIP(%v) = %v want %v", tt.ipp, got, tt.want)
    		}
    	}
    }
    
    func mustIPs(strs ...string) []Addr {
    	var res []Addr
    	for _, s := range strs {
    		res = append(res, mustIP(s))
    	}
    	return res
    }
    
    func BenchmarkBinaryMarshalRoundTrip(b *testing.B) {
    	b.ReportAllocs()
    	tests := []struct {
    		name string
    		ip   string
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
Back to top