Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 74 for corretto (0.16 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    Since the artifact view was created before the attributes were added to the configuration, Gradle was not able to select the correct artifact.
    
    Some builds may have worked around this by also putting the additional attributes into the artifact view. This is no longer necessary.
    
    [[kotlin_1_9.0]]
    ==== Upgrade to Kotlin 1.9.0
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  2. cmd/bucket-replication.go

    			opType = replication.ObjectReplicationType
    		}
    		for _, rinfo := range rinfos.Targets {
    			if rinfo.ReplicationStatus != rinfo.PrevReplicationStatus {
    				rinfo.OpType = opType // update optype to reflect correct operation.
    				globalReplicationStats.Update(bucket, rinfo, rinfo.ReplicationStatus, rinfo.PrevReplicationStatus)
    			}
    		}
    	}
    
    	sendEvent(eventArgs{
    		EventName:  eventName,
    		BucketName: bucket,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		watcherIdx:     0,
    		watchers: indexedWatchers{
    			allWatchers:   make(map[namespacedName]watchersMap),
    			valueWatchers: make(map[string]watchersMap),
    		},
    		// TODO: Figure out the correct value for the buffer size.
    		incoming:              make(chan watchCacheEvent, 100),
    		dispatchTimeoutBudget: newTimeBudget(),
    		// We need to (potentially) stop both:
    		// - wait.Until go-routine
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. cmd/bucket-handlers.go

    		n, err := io.Copy(io.MultiWriter(buf, md5w), ioutil.HardLimitReader(pReader, maxFanOutSize))
    		if err != nil {
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    
    		// Set the correct hex md5sum for the fan-out stream.
    		fanOutOpts.MD5Hex = hex.EncodeToString(md5w.Sum(nil))
    
    		concurrentSize := 100
    		if runtime.GOMAXPROCS(0) < concurrentSize {
    			concurrentSize = runtime.GOMAXPROCS(0)
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/liveness/plive.go

    					// the load.
    					if sym, ok := v.Args[0].Aux.(*obj.LSym); ok && sym == ir.Syms.WriteBarrier {
    						load = v
    						break
    					}
    					v.Fatalf("load of write barrier flag not from correct global: %s", v.LongString())
    				}
    				// Common case: just flow backwards.
    				if len(v.Args) == 1 || len(v.Args) == 2 && v.Args[0] == v.Args[1] {
    					// Note: 386 lowers Neq32 to (TESTL cond cond),
    					v = v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  6. src/time/format.go

    }
    
    // parseTimeZone parses a time zone string and returns its length. Time zones
    // are human-generated and unpredictable. We can't do precise error checking.
    // On the other hand, for a correct parse there must be a time zone at the
    // beginning of the string, so it's almost always true that there's one
    // there. We look at the beginning of the string for a run of upper-case letters.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  7. RELEASE.md

    *   Remove the `tf.keras.dtensor.experimental.layout_map_scope()`. You can user the `tf.keras.dtensor.experimental.LayoutMap.scope()` instead.
    
    ## Security
    
    *   Fixes correct values rank in UpperBound and LowerBound [CVE-2023-33976](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-33976)
    
    ## Thanks to our Contributors
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        // Change all DT_VARIANT result types in function results to unranked tensor
        // type with element type derived from the corresponding input operand. This
        // is correct because while body's inputs and results have the same type.
        SmallVector<Type, 8> updated_result_types;
        updated_result_types.reserve(num_results);
        if (func_index == 1) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  9. docs/en/docs/release-notes.md

    A command line tool that will **process your code** and update most of the things **automatically** for you. Make sure you have your code in git first, and review each of the changes to make sure everything is correct before committing the changes.
    
    ### Pydantic v1
    
    **This version of FastAPI still supports Pydantic v1**. And although Pydantic v1 will be deprecated at some point, it will still be supported for a while.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller_test.go

    			pendingPods:    2,
    			expectedActive: 2,
    			expectedReady:  ptr.To[int32](0),
    		},
    		"correct # of pods": {
    			parallelism:    3,
    			completions:    5,
    			backoffLimit:   6,
    			activePods:     3,
    			readyPods:      2,
    			expectedActive: 3,
    			expectedReady:  ptr.To[int32](2),
    		},
    		"WQ job: correct # of pods": {
    			parallelism:    2,
    			completions:    -1,
    			backoffLimit:   6,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
Back to top