Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for comp2 (0.04 sec)

  1. src/debug/dwarf/entry_test.go

    	// hand-written.
    	tests := []struct {
    		name      string
    		info      []byte
    		addrSize  int
    		byteOrder binary.ByteOrder
    	}{
    		{
    			"32-bit little",
    			[]byte{0x30, 0, 0, 0, // comp unit length
    				4, 0, // DWARF version 4
    				0, 0, 0, 0, // abbrev offset
    				8, // address size
    				0,
    				0, 0, 0, 0, 0, 0, 0, 0,
    				0, 0, 0, 0, 0, 0, 0, 0,
    				0, 0, 0, 0, 0, 0, 0, 0,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/compare.go

    		}
    		return finishCompare(n, res, init)
    	}
    
    	// inline: build boolean expression comparing element by element
    	andor := ir.OANDAND
    	if n.Op() == ir.ONE {
    		andor = ir.OOROR
    	}
    	var expr ir.Node
    	comp := func(el, er ir.Node) {
    		a := ir.NewBinaryExpr(base.Pos, n.Op(), el, er)
    		if expr == nil {
    			expr = a
    		} else {
    			expr = ir.NewLogicalExpr(base.Pos, andor, expr, a)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:55:14 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  3. cmd/object-api-utils.go

    		opts = append([]s2.WriterOption{s2.WriterPadding(compPadEncrypted), s2.WriterPaddingSrc(rng)}, compressOpts...)
    	}
    	comp := s2.NewWriter(pw, opts...)
    	indexCh := make(chan []byte, 1)
    	go func() {
    		defer xioutil.SafeClose(indexCh)
    		cn, err := io.Copy(comp, r)
    		if err != nil {
    			comp.Close()
    			pw.CloseWithError(err)
    			return
    		}
    		if on > 0 && on != cn {
    			// if client didn't sent all data
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  4. pkg/slices/slices_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package slices
    
    import (
    	"cmp"
    	"fmt"
    	"math/rand"
    	"reflect"
    	"strconv"
    	"testing"
    
    	cmp2 "github.com/google/go-cmp/cmp"
    
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/tests/util/leak"
    )
    
    type s struct {
    	Junk string
    }
    
    func TestEqual(t *testing.T) {
    	tests := []struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/config/common.go

    			// After incrementing the k8s MINOR version by one, if this version is equal or greater than the
    			// MCP version, return true.
    			v := k8sVersion.WithMinor(k8sVersion.Minor() + 1)
    			if comp, _ := v.Compare(mcpVersion.String()); comp != -1 {
    				return true
    			}
    		}
    	}
    	return false
    }
    
    // prepareStaticVariables takes a given config and stores values from it in variables
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 11:04:08 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/sourceset/GeneratedSourcesIntegrationTest.groovy

            app.library.headerFiles*.writeToDir(file("src/input"))
            degenerateInputSources()
    
            when:
            buildFile << """
        apply plugin: 'c'
    
    model {
        components { comp ->
            headersOnly(NativeLibrarySpec) {
                sources {
                    c.generatedBy tasks.generateCSources
                }
            }
            main(NativeExecutableSpec) {
                sources {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/obj0.go

    			*p = s[0].p
    			p.Link = q
    		}
    		for s[0].nop != 0 {
    			s[0].nop--
    			c.addnop(p)
    		}
    	}
    }
    
    func (c *ctxt0) markregused(s *Sch) {
    	p := &s.p
    	s.comp = c.compound(p)
    	s.nop = 0
    	if s.comp {
    		s.set.ireg |= 1 << (REGTMP - REG_R0)
    		s.used.ireg |= 1 << (REGTMP - REG_R0)
    	}
    
    	ar := 0  /* dest is really reference */
    	ad := 0  /* source/dest is really address */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/LibraryDependenciesIntegrationTest.groovy

            def app = new CppHelloWorldApp()
            app.executable.writeSources(file("src/main"))
            app.library.writeSources(file("src/hello"))
    
            and:
            buildFile << """
    model {
        components { comp ->
            hello(NativeLibrarySpec)
            main(NativeExecutableSpec) {
                sources {
                    cpp.lib ${notation}
                }
            }
        }
    }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/cc_op_gen_util.cc

              "bitor",
              "bool",
              "break",
              "case",
              "catch",
              "char",
              "char16_t",
              "char32_t",
              "class",
              "compl",
              "concept",
              "const",
              "const_cast",
              "constexpr",
              "continue",
              "decltype",
              "default",
              "delete",
              "do",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 00:57:05 UTC 2024
    - 25K bytes
    - Viewed (0)
  10. src/math/lgamma.go

    			p := y*p1 + p2
    			lgamma += (p - 0.5*y)
    		case 1:
    			z := y * y
    			w := z * y
    			p1 := _lgamT[0] + w*(_lgamT[3]+w*(_lgamT[6]+w*(_lgamT[9]+w*_lgamT[12]))) // parallel comp
    			p2 := _lgamT[1] + w*(_lgamT[4]+w*(_lgamT[7]+w*(_lgamT[10]+w*_lgamT[13])))
    			p3 := _lgamT[2] + w*(_lgamT[5]+w*(_lgamT[8]+w*(_lgamT[11]+w*_lgamT[14])))
    			p := z*p1 - (Tt - w*(p2+y*p3))
    			lgamma += (Tf + p)
    		case 2:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top