Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 240 for near (0.1 sec)

  1. android/guava-tests/test/com/google/common/math/MathTesting.java

              return x.negate();
            }
          };
    
      /*
       * This list contains values that attempt to provoke overflow in integer operations. It contains
       * positive values on or near 2^N for N near multiples of 8 (near byte boundaries).
       */
      static final ImmutableSet<Integer> POSITIVE_INTEGER_CANDIDATES;
    
      static final Iterable<Integer> NEGATIVE_INTEGER_CANDIDATES;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 11.2K bytes
    - Viewed (0)
  2. test/fixedbugs/bug140.go

    	if true {
    	} else {
    	L1:
    		goto L1
    	}
    	if true {
    	} else {
    		goto L2
    	L2:
    		main()
    	}
    }
    
    /*
    These should be legal according to the spec.
    bug140.go:6: syntax error near L1
    bug140.go:7: syntax error near L2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 409 bytes
    - Viewed (0)
  3. src/math/big/arith.go

    func addVV_g(z, x, y []Word) (c Word) {
    	// The comment near the top of this file discusses this for loop condition.
    	for i := 0; i < len(z) && i < len(x) && i < len(y); i++ {
    		zi, cc := bits.Add(uint(x[i]), uint(y[i]), uint(c))
    		z[i] = Word(zi)
    		c = Word(cc)
    	}
    	return
    }
    
    // The resulting carry c is either 0 or 1.
    func subVV_g(z, x, y []Word) (c Word) {
    	// The comment near the top of this file discusses this for loop condition.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 28 20:09:27 UTC 2022
    - 8.3K bytes
    - Viewed (0)
  4. test/fixedbugs/bug157.go

    	default: f();
    	}
    
    	// this doesn't but it should
    	// (semicolons are not needed at the end of a statement list)
    	switch x {
    	case 0: f()
    	default: f()
    	}
    }
    
    
    /*
    bug157.go:20: syntax error near default
    bug157.go:20: first switch statement must be a case
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 524 bytes
    - Viewed (0)
  5. security/samples/plugin_ca_certs/README.md

    This directory generates key and cert that is used in <https://istio.io/docs/tasks/security/cert-management/plugin-ca-cert/>.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 28 18:28:39 UTC 2020
    - 254 bytes
    - Viewed (0)
  6. test/tighten.go

    package main
    
    var (
    	e  any
    	ts uint16
    )
    
    func moveValuesWithMemoryArg(len int) {
    	for n := 0; n < len; n++ {
    		// Load of e.data is lowed as a MOVDload op, which has a memory
    		// argument. It's moved near where it's used.
    		_ = e != ts // ERROR "MOVDload is moved$" "MOVDaddr is moved$"
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 513 bytes
    - Viewed (0)
  7. test/fixedbugs/bug017.go

    main.go.c:24: error: for each function it appears in.)
    main.go.c:24: error: syntax error before ‘def’
    main.go.c:24: error: missing terminating " character
    main.go.c:25: warning: excess elements in struct initializer
    main.go.c:25: warning: (near initialization for ‘slit’)
    main.go.c:36: error: syntax error at end of input
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 888 bytes
    - Viewed (0)
  8. test/fixedbugs/bug219.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package bug219
    
    func f(func()) int { return 0 }
    
    // this doesn't work:
    // bug219.go:16: syntax error near if
    func g1() {
    	if x := f(func() {
    		if true {}
    	}); true {
    		_ = x;
    	}
    }
    
    // this works
    func g2() {
    	if x := f(func() {
    		//if true {}
    	}); true {
    		_ = x;
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 527 bytes
    - Viewed (0)
  9. pilot/pkg/leaderelection/k8sleaderelection/README.md

    to make it so that the default revision wins leader elections and steals locks from non-default revisions. The changes were not upstreamed to k8s in time for the Istio 1.12 release.
    
    Ideally, prioritized leader election gets upstreamed in the near future ([KEP](https://github.com/kubernetes/enhancements/pull/2836)), and hopefully what gets merged isn't too far from what we have forked here (if it is, we'd have to potentially maintain migration code in our fork for a few releases before abandoning)....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 11 16:58:48 UTC 2021
    - 935 bytes
    - Viewed (0)
  10. releasenotes/notes/inbound-passthrough.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
    - 29940
    upgradeNotes:
      - title: Inbound Forwarding Configuration
        content: |
          The behavior of inbound forwarding will be modified in the near future. While this change is not enabled
          by default in Istio 1.10, it can be enabled today by configuring the `PILOT_ENABLE_INBOUND_PASSTHROUGH=true` environment
          variable in Istiod.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 14 00:22:23 UTC 2021
    - 1.8K bytes
    - Viewed (0)
Back to top