Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 1,485 for corerest (0.41 sec)

  1. src/os/user/cgo_listgroups_unix.go

    // stored in gids.
    func groupRetry(username string, name []byte, userGID _C_gid_t, gids *[]_C_gid_t, n *_C_int) error {
    	// More than initial buffer, but now n contains the correct size.
    	if *n > maxGroups {
    		return fmt.Errorf("user: %q is a member of more than %d groups", username, maxGroups)
    	}
    	*gids = make([]_C_gid_t, *n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 04:31:34 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  2. src/runtime/complex.go

    	} else {
    		ratio := real(m) / imag(m)
    		denom := imag(m) + ratio*real(m)
    		e = (real(n)*ratio + imag(n)) / denom
    		f = (imag(n)*ratio - real(n)) / denom
    	}
    
    	if isNaN(e) && isNaN(f) {
    		// Correct final result to infinities and zeros if applicable.
    		// Matches C99: ISO/IEC 9899:1999 - G.5.1  Multiplicative operators.
    
    		a, b := real(n), imag(n)
    		c, d := real(m), imag(m)
    
    		switch {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 15 22:45:17 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/tests/batch_function_fallback_resource_variable_as_captured_tensor.mlir

          // CHECK: tfrt_fallback_async.batch_function device([[DEVICE:.*]]) @batched_func ([[BATCHED_FUNC_ARG:%.*]])
          // CHECK-SAME: Tcaptured = [!corert.resource]
          // CHECK-SAME: Tin = []
          // CHECK-SAME: Tout = [f32]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/eventbus/AsyncEventBusTest.java

        assertEquals("One event dispatch task should be queued.", 1, tasks.size());
    
        tasks.get(0).run();
    
        assertEquals("One event should be delivered.", 1, events.size());
        assertEquals("Correct string should be delivered.", EVENT, events.get(0));
      }
    
      /**
       * An {@link Executor} wanna-be that simply records the tasks it's given. Arguably the Worst
       * Executor Ever.
       *
       * @author cbiffle
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/console/DefaultWorkInProgressFormatter.java

            if (cols > 0) {
                maxWidth = cols - 1;
            } else {
                // Assume 80 wide. This is to minimize wrapping on console where we don't know the width (eg mintty)
                // It's not intended to be a correct solution, simply a work around
                maxWidth = 79;
            }
            if (maxWidth < formattedString.length()) {
                return formattedString.substring(0, maxWidth);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. test/fixedbugs/issue13162.go

    	b := make([]byte, n)
    	for i = range b {
    		b[i] = byte(i + 1)
    	}
    	s := string(b)
    
    	// When n == 0, i is untouched by the range loop.
    	// Picking an initial value of -1 for i makes the
    	// "want" calculation below correct in all cases.
    	i = -1
    	for i = range s {
    		b[i] = s[i]
    	}
    	if want := n - 1; i != want {
    		fmt.Printf("index after range with side-effect = %d want %d\n", i, want)
    		os.Exit(1)
    	}
    
    	i = -1
    	r = '\x00'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 30 18:17:20 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/tasks/VerificationException.java

     *
     * Verification failures do not represent a bug in either the build tool or custom task logic; the responsibility falls to the
     * project's software engineer to correct the verification failure.
     *
     * @since 7.4
     */
    public class VerificationException extends GradleException {
        public VerificationException(String message) {
            super(message);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 18:24:23 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/plugin/PluginNotFoundException.java

        private Plugin plugin;
    
        public PluginNotFoundException(Plugin plugin, ArtifactNotFoundException e) {
            super(
                    "Plugin could not be found - check that the goal name is correct: " + e.getMessage(),
                    e.getGroupId(),
                    e.getArtifactId(),
                    e.getVersion(),
                    "maven-plugin",
                    null,
                    e.getRemoteRepositories(),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. .github/workflows/mint/nginx-1-node.conf

                proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
                proxy_set_header X-Forwarded-Proto $scheme;
                proxy_set_header X-NginX-Proxy true;
    
                # This is necessary to pass the correct IP to be hashed
                real_ip_header X-Real-IP;
    
                proxy_connect_timeout 300;
                
                # To support websocket
                proxy_http_version 1.1;
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 31 21:38:10 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/NativeToolChainDiscoveryIntegrationTest.groovy

            mainExecutable.exec().out == helloWorldApp.expectedOutput(toolChain)
    
            cleanup:
            toolChain.resetEnvironment()
        }
    
        @ToBeFixedForConfigurationCache
        def "uses correct tool chain when explicitly configured"() {
            given:
            buildFile << """
    apply plugin: 'cpp'
    
    model {
        toolChains {
            ${toolChain.buildScriptConfig}
        }
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top