Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 82 for RES (0.22 sec)

  1. 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)
  2. 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)
  3. src/syscall/zsyscall_darwin_amd64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func readdir_r(dir uintptr, entry *Dirent, result **Dirent) (res Errno) {
    	r0, _, _ := syscall(abi.FuncPCABI0(libc_readdir_r_trampoline), uintptr(dir), uintptr(unsafe.Pointer(entry)), uintptr(unsafe.Pointer(result)))
    	res = Errno(r0)
    	return
    }
    
    func libc_readdir_r_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  4. 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)
  5. src/syscall/zsyscall_darwin_arm64.go

    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func readdir_r(dir uintptr, entry *Dirent, result **Dirent) (res Errno) {
    	r0, _, _ := syscall(abi.FuncPCABI0(libc_readdir_r_trampoline), uintptr(dir), uintptr(unsafe.Pointer(entry)), uintptr(unsafe.Pointer(result)))
    	res = Errno(r0)
    	return
    }
    
    func libc_readdir_r_trampoline()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        }
        // Returns -1 if we don't find which this result maps to.
        return -1;
      };
    
      llvm::SmallVector<Value, 4> returns;
      for (auto res : func.getBody().back().getTerminator()->getOperands()) {
        returns.push_back(res);
      }
      llvm::DenseMap<int, int> result;
      for (const auto &result_and_idx : llvm::enumerate(returns)) {
        if (IsTensorListType(result_and_idx.value().getType(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

    func.func @empty(%arg0: tensor<?xi32>) -> tensor<*xf32> {
      // CHECK-DAG: [[CST:%.+]] = "tf.Const"() <{value = dense<0.000000e+00> : tensor<f32>}>
      // CHECK-DAG: [[RES:%.+]] = "tf.BroadcastTo"([[CST]], %arg0)
      %0 = "tf.Empty"(%arg0) {init = true} : (tensor<?xi32>) -> (tensor<*xf32>)
    
      // CHECK: return [[RES]]
      func.return %0 : tensor<*xf32>
    }
    
    // CHECK-LABEL: func @l2_loss
    // CHECK-SAME: (%[[INPUT:.*]]: tensor<?x?xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/lifecycle_test.go

    			}
    			opts.NumVersions = 1
    			if tc.hasManyVersions {
    				opts.NumVersions = 2 // at least one noncurrent version
    			}
    			if res := lc.Eval(opts); res.Action != tc.expectedAction {
    				t.Fatalf("Expected action: `%v`, got: `%v`", tc.expectedAction, res.Action)
    			}
    		})
    	}
    }
    
    func TestHasActiveRules(t *testing.T) {
    	testCases := []struct {
    		inputConfig string
    		prefix      string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    		}
    		ttl, err := e.calculateTTL(obj, res.TTL, true)
    		if err != nil {
    			return nil, nil, err
    		}
    
    		// The operation has succeeded.  Call the finish function if there is one,
    		// and then make sure the defer doesn't call it again.
    		fn := finishUpdate
    		finishUpdate = finishNothing
    		fn(ctx, true)
    
    		if int64(ttl) != res.TTL {
    			return obj, &ttl, nil
    		}
    		return obj, nil, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	meta := clusterServicesMetadata{}
    	if err := json.Unmarshal(s, &meta); err != nil {
    		t.Fatal(err)
    	}
    	res := []string{}
    	for _, m := range meta.Services {
    		res = append(res, m.Host)
    	}
    	return res
    }
    
    func mtlsMode(m string) string {
    	return fmt.Sprintf(`apiVersion: security.istio.io/v1beta1
    kind: PeerAuthentication
    metadata:
      name: default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top