Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 314 for mixer (0.08 sec)

  1. src/go/printer/testdata/declarations.input

    		_ string  // comment
    	)
    	// some entries have a type
    	var (
    		xxxxxx int
    		x float
    		xxx string
    		yyyyyyyy int = 1234
    		y float = 3.14
    		yyyy = "bar"
    		yyy string = "foo"
    	)
    	// mixed entries - all comments should be aligned
    	var (
    		a, b, c int
    		x = 10
    		d int  // comment
    		y = 20  // comment
    		f, ff, fff, ffff int = 0, 1, 2, 3  // comment
    	)
    	// respect original line breaks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.5K bytes
    - Viewed (0)
  2. src/crypto/des/block.go

    				// Column is the middle four bits.
    				row := uint8(((i & 2) << 4) | i&1)
    				col := uint8(j << 1)
    				t := row | col
    
    				// The rotation was performed in the feistel rounds, being factored out and now mixed into the feistelBox.
    				f = (f << 1) | (f >> 31)
    
    				feistelBox[s][t] = uint32(f)
    			}
    		}
    	}
    }
    
    // permuteInitialBlock is equivalent to the permutation defined
    // by initialPermutation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/plugins/JavaGradlePluginPluginIntegrationTest.groovy

            'implementation-class=com.xxx.WrongPluginClass' | BAD_IMPL_CLASS_WARNING_PREFIX     | 2
        }
    
        def "jar issues correct warnings if built jar contains mixed descriptor problems" () {
            given:
            buildFile()
            badPluginDescriptor('bad-plugin1', 'implementation-class=')
            badPluginDescriptor('bad-plugin2', 'implementation-class=com.xxx.WrongPluginClass')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. src/crypto/sha1/sha1block_arm.s

    //   - rounds 60-79 are type 4 and do not load data (ROUND4 macro).
    //
    // Each round loads or shuffles the data, then computes a per-round
    // function of b, c, d, and then mixes the result into and rotates the
    // five registers a, b, c, d, e holding the intermediate results.
    //
    // The register rotation is implemented by rotating the arguments to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PluginsBlockInterpreterTest.kt

                """id("plugin-id").version("1.0").apply(false)""",
                PluginRequestSpec("plugin-id", version = "1.0", apply = false)
            )
        }
    
    
        @Test
        fun `single plugin - id() mixed version apply`() {
            assertStaticInterpretationOf(
                """
                    id("plugin-id").version("1.0").apply(true)
                    id("plugin-id").version("2.0") apply true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 15:15:27 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  6. src/go/printer/testdata/declarations.golden

    		_	string	// comment
    	)
    	// some entries have a type
    	var (
    		xxxxxx		int
    		x		float
    		xxx		string
    		yyyyyyyy	int	= 1234
    		y		float	= 3.14
    		yyyy			= "bar"
    		yyy		string	= "foo"
    	)
    	// mixed entries - all comments should be aligned
    	var (
    		a, b, c			int
    		x			= 10
    		d			int			// comment
    		y				= 20		// comment
    		f, ff, fff, ffff	int	= 0, 1, 2, 3	// comment
    	)
    	// respect original line breaks
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  7. cmd/net_test.go

    		{
    			ipList:       []string{"hostname", "127.0.0.1", "192.168.1.106"},
    			sortedIPList: []string{"hostname", "192.168.1.106", "127.0.0.1"},
    		},
    		// Non parsable ip is assumed to be hostname, with a mixed input of ip and hostname.
    		// gets preserved and moved into left most elements, regardless of
    		// IP based sorting.
    		{
    			ipList:       []string{"hostname1", "10.0.0.13", "hostname2", "127.0.0.1", "192.168.1.106"},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Apr 19 08:43:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/internal/platform/Platform.kt

        return try {
          // Attempt to get the trust manager from an OpenJDK socket factory. We attempt this on all
          // platforms in order to support Robolectric, which mixes classes from both Android and the
          // Oracle JDK. Note that we don't support HTTP/2 or other nice features on Robolectric.
          val sslContextClass = Class.forName("sun.security.ssl.SSLContextImpl")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    	var tests = []struct {
    		args     []string
    		expected bool
    	}{
    		// Expected to succeed, --config is mixed with skip-* flags only or no other flags
    		{[]string{"--foo=bar"}, true},
    		{[]string{"--config=hello"}, true},
    		{[]string{"--config=hello", "--ignore-preflight-errors=all"}, true},
    		// Expected to succeed, --config is mixed with skip-* flags only or no other flags
    		{[]string{"--config=hello", "--skip-token-print=true"}, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  10. pkg/controller/job/indexed_job_utils_test.go

    			activePods: []indexPhase{
    				{"6", v1.PodPending},
    			},
    			succeededIndexes: []interval{{4, 5}},
    			cnt:              6,
    			completions:      6,
    			want:             []int{0, 1, 2, 3},
    		},
    		"mixed": {
    			activePods: []indexPhase{
    				{"3", v1.PodPending},
    				{"5", v1.PodRunning},
    				{"8", v1.PodPending},
    				{noIndex, v1.PodRunning},
    				{"-3", v1.PodRunning},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top