Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 302 for 1e20 (0.06 sec)

  1. src/vendor/golang.org/x/net/route/interface_openbsd.go

    	}
    	attrs := uint(nativeEndian.Uint32(b[12:16]))
    	if attrs&syscall.RTA_IFP == 0 {
    		return nil, nil
    	}
    	m := &InterfaceMessage{
    		Version: int(b[2]),
    		Type:    int(b[3]),
    		Flags:   int(nativeEndian.Uint32(b[16:20])),
    		Index:   int(nativeEndian.Uint16(b[6:8])),
    		Addrs:   make([]Addr, syscall.RTAX_MAX),
    		raw:     b[:l],
    	}
    	ll := int(nativeEndian.Uint16(b[4:6]))
    	if len(b) < ll {
    		return nil, errInvalidMessage
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 05 19:54:32 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/crypto/chacha20poly1305/chacha20poly1305_amd64.go

    	state[7] = binary.LittleEndian.Uint32(key[12:16])
    	state[8] = binary.LittleEndian.Uint32(key[16:20])
    	state[9] = binary.LittleEndian.Uint32(key[20:24])
    	state[10] = binary.LittleEndian.Uint32(key[24:28])
    	state[11] = binary.LittleEndian.Uint32(key[28:32])
    
    	state[12] = 0
    	state[13] = binary.LittleEndian.Uint32(nonce[0:4])
    	state[14] = binary.LittleEndian.Uint32(nonce[4:8])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. test/method4.dir/prog.go

    	t1 := T1(4)
    	t2 := &T2{4}
    
    	eq(t1.Sum(a, 5), 15)
    	eq(t2.Sum(a, 6), 16)
    
    	eq(T1.Sum(t1, a, 7), 17)
    	eq((*T2).Sum(t2, a, 8), 18)
    
    	f1 := T1.Sum
    	eq(f1(t1, a, 9), 19)
    	f2 := (*T2).Sum
    	eq(f2(t2, a, 10), 20)
    
    	eq(I1.Sum(t1, a, 11), 21)
    	eq(I1.Sum(t2, a, 12), 22)
    
    	f3 := I1.Sum
    	eq(f3(t1, a, 13), 23)
    	eq(f3(t2, a, 14), 24)
    
    	eq(I2.Sum(t1, a, 15), 25)
    	eq(I2.Sum(t2, a, 16), 26)
    
    	f4 := I2.Sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 07 12:26:48 UTC 2014
    - 1.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/single_versions.adoc

    ** The symbol `]` can be used instead of `(` for an exclusive lower bound, and `[` instead of `)` for exclusive upper bound. e.g `]1.0, 2.0[`
    ** An upper bound exclude acts as a prefix exclude.
    This means that `[1.0, 2.0[` will also exclude all versions starting with `2.0` that are smaller than `2.0`.
    For example versions like `2.0-dev1` or `2.0-SNAPSHOT` are no longer included in the range.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:46:26 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyReportTaskIntegrationTest.groovy

            when:
            executer.noExtraLogging()
            run "dependencies"
    
            then:
            output.contains """
    config
    +--- foo:bar:1.0
    |    \\--- foo:baz:2.0 FAILED
    \\--- foo:baz:1.0 -> 2.0 FAILED
    """
        }
    
        def "marks modules that can't be resolved after forcing a different version as 'FAILED'"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 25 05:32:54 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  6. test/typeparam/builtins.go

    	C2 interface{ chan int | chan string },
    ]() {
    	type m1S0 []int
    	type m1M0 map[string]int
    	type m1C0 chan int
    
    	_ = make([]int, 10)
    	_ = make(m1S0, 10)
    	_ = make(S1, 10)
    	_ = make(S1, 10, 20)
    
    	_ = make(map[string]int)
    	_ = make(m1M0)
    	_ = make(M1)
    	_ = make(M1, 10)
    
    	_ = make(chan int)
    	_ = make(m1C0)
    	_ = make(C1)
    	_ = make(C1, 10)
    }
    
    // len/cap
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 09:04:48 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/AbstractComponentSelectionRulesIntegrationTest.groovy

                                withBranch('test')
                                withStatus('milestone')
                            }
                        }
                        '1.2'()
                        '2.0' {
                            withModule(org.gradle.test.fixtures.ivy.IvyModule) {
                                withBranch('test')
                                withStatus('milestone')
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/go.mod

    // This is a generated file. Do not edit directly.
    
    module k8s.io/apimachinery
    
    go 1.22.0
    
    require (
    	github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5
    	github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
    	github.com/fxamacker/cbor/v2 v2.7.0-beta
    	github.com/gogo/protobuf v1.3.2
    	github.com/golang/protobuf v1.5.4
    	github.com/google/gnostic-models v0.6.8
    	github.com/google/go-cmp v0.6.0
    	github.com/google/gofuzz v1.2.0
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 14:02:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. docs/ru/docs/tutorial/body-multiple-params.md

    === "Python 3.10+"
    
        ```Python hl_lines="18-20"
        {!> ../../../docs_src/body_multiple_params/tutorial001_an_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="18-20"
        {!> ../../../docs_src/body_multiple_params/tutorial001_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="19-21"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate_registration_test.cc

        %1:2 = tf_executor.island wraps "tf.Const"() {device = "", dtype = "tfdtype$DT_HALF", value = dense<[1.0, 2.0]> : tensor<2xf16>} : () -> tensor<2xf16> loc("const2")
        tf_executor.fetch %0#0, %1#0 : tensor<1x2xf16>, tensor<2xf16>
      }
      func.return %graph#0, %graph#1 : tensor<1x2xf16>, tensor<2xf16>
    })";
      std::string result;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 23:11:32 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top