Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 151 for oldR (0.35 sec)

  1. src/crypto/tls/handshake_client_test.go

    		t.Fatal("ticket didn't change after resumption")
    	}
    
    	// An old session ticket is replaced with a ticket encrypted with a fresh key.
    	ticket = getTicket()
    	serverConfig.Time = func() time.Time { return time.Now().Add(24*time.Hour + time.Minute) }
    	testResumeState("ResumeWithOldTicket", true)
    	if bytes.Equal(ticket, getTicket()) {
    		t.Fatal("old first ticket matches the fresh one")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  2. src/cmd/go/go_test.go

    		data, err := os.ReadFile(name)
    		if err != nil {
    			t.Fatal(err)
    		}
    		old := data
    		data = append(data, fmt.Sprintf("var DummyUnusedVar%d bool\n", idx)...)
    		if err := os.WriteFile(name, append(data, '\n'), 0666); err != nil {
    			t.Fatal(err)
    		}
    		tg.sleep()
    		return func() {
    			if err := os.WriteFile(name, old, 0666); err != nil {
    				t.Fatal(err)
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  3. docs/changelogs/changelog_3x.md

        subclasses. We've restored that support!
    
    
    ## Version 3.13.0
    
    _2019-02-04_
    
     *  **This release bumps our minimum requirements to Java 8+ or Android 5+.** Cutting off old
        devices is a serious change and we don't do it lightly! [This post][require_android_5] explains
        why we're doing this and how to upgrade.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  4. .bazelrc

    build:release_arm64_linux --copt=-flax-vector-conversions
    test:release_arm64_linux --flaky_test_attempts=3
    
    # The old gcc linux build options are preserved in the unsupported_*_linux
    # configs. If your project fails to build with Clang, you can use these
    # unsupported flags to replace the release flags in your build command.
    # However, please note that the old toolchain is no longer officially supported
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    Starting from Java 9, the language version must not contain the `1.` prefix.
    This affects the format of the `sourceCompatiblity` and `targetCompatibility` properties on the `JavaCompile` task and `JavaExtension`.
    The old format is still supported when resolving the `JavaVersion` from a string.
    
    [cols="1,1"]
    |===
    | Gradle 7.6 | Gradle 8.0
    | `1.8` | `1.8`
    | `1.9` | `9`
    | `1.10`| `10`
    | `11`  | `11`
    |===
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (AtomicExchange(32|64) ...) => (LoweredAtomicExchange(32|64) ...)
    
    (AtomicAdd(32|64) ...) => (LoweredAtomicAdd(32|64) ...)
    
    (AtomicCompareAndSwap(32|64) ptr old new_ mem) => (LoweredAtomicCas(32|64) [1] ptr old new_ mem)
    (AtomicCompareAndSwapRel32   ptr old new_ mem) => (LoweredAtomicCas32 [0] ptr old new_ mem)
    
    (AtomicAnd(8|32)  ...) => (LoweredAtomicAnd(8|32)  ...)
    (AtomicOr(8|32)   ...) => (LoweredAtomicOr(8|32)   ...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// Compare and swap.
    		// arg0 = pointer, arg1 = old value, arg2 = new value, arg3 = memory.
    		// if *(arg0+auxint+aux) == arg1 {
    		//   *(arg0+auxint+aux) = arg2
    		//   return (true, memory)
    		// } else {
    		//   return (false, memory)
    		// }
    		// Note that these instructions also return the old value in arg1, but we ignore it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  8. src/go/parser/parser.go

    	for p.tok == token.COMMA {
    		p.next()
    		list = append(list, p.parseExpr())
    	}
    
    	return
    }
    
    func (p *parser) parseList(inRhs bool) []ast.Expr {
    	old := p.inRhs
    	p.inRhs = inRhs
    	list := p.parseExprList()
    	p.inRhs = old
    	return list
    }
    
    // ----------------------------------------------------------------------------
    // Types
    
    func (p *parser) parseType() ast.Expr {
    	if p.trace {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (AtomicExchange64 ptr val mem) => (LoweredAtomicExchange64 ptr val mem)
    
    // Atomic compare and swap.
    (AtomicCompareAndSwap32 ptr old new_ mem) => (LoweredAtomicCas32 ptr old new_ mem)
    (AtomicCompareAndSwap64 ptr old new_ mem) => (LoweredAtomicCas64 ptr old new_ mem)
    
    // Atomic and: *(*uint8)(ptr) &= val
    //
    // Round pointer down to nearest word boundary and pad value with ones before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set_test.go

    // depends on both functions (such as re-queueing on sync error).
    func processSync(ctx context.Context, rsc *ReplicaSetController, key string) error {
    	// Save old syncHandler and replace with one that captures the error.
    	oldSyncHandler := rsc.syncHandler
    	defer func() {
    		rsc.syncHandler = oldSyncHandler
    	}()
    	var syncErr error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top