Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 190 for targetJdk (0.17 sec)

  1. guava/src/com/google/common/cache/LongAdder.java

     * equals}, {@code hashCode} and {@code compareTo} because instances are expected to be mutated, and
     * so are not useful as collection keys.
     *
     * <p>jsr166e note: This class is targeted to be placed in java.util.concurrent.atomic.
     *
     * @since 1.8
     * @author Doug Lea
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  2. cmd/listen-notification-handlers.go

    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    	}
    
    	rulesMap := event.NewRulesMap(eventNames, pattern, event.TargetID{ID: mustGetUUID()})
    
    	setEventStreamHeaders(w)
    
    	// Listen Publisher and peer-listen-client uses nonblocking send and hence does not wait for slow receivers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/apps/v1beta2/types.go

    	// Total number of non-terminated pods targeted by this deployment (their labels match the selector).
    	// +optional
    	Replicas int32 `json:"replicas,omitempty" protobuf:"varint,2,opt,name=replicas"`
    
    	// Total number of non-terminated pods targeted by this deployment that have the desired template spec.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/conn.go

    				klog.Errorf("Single channel byte should follow stream close signal. Got %d bytes", len(data)-1)
    				break
    			} else {
    				channel := data[1]
    				if int(channel) >= len(conn.channels) {
    					klog.Errorf("Close is targeted for a channel %d that is not valid, possible protocol error", channel)
    					break
    				}
    				klog.V(4).Infof("Received half-close signal from client; close %d stream", channel)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:10:30 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradle/api/tasks/wrapper/Wrapper.java

         *
         * <p>The wrapper allows for verification of the downloaded Gradle distribution via SHA-256 hash sum comparison.
         * This increases security against targeted attacks by preventing a man-in-the-middle attacker from tampering with
         * the downloaded Gradle distribution.
         *
         * @since 4.5
         */
        @Nullable
        @Optional
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 03:11:06 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    type SockaddrNFC struct {
    	DeviceIdx   uint32
    	TargetIdx   uint32
    	NFCProtocol uint32
    	raw         RawSockaddrNFC
    }
    
    func (sa *SockaddrNFC) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	sa.raw.Sa_family = AF_NFC
    	sa.raw.Dev_idx = sa.DeviceIdx
    	sa.raw.Target_idx = sa.TargetIdx
    	sa.raw.Nfc_protocol = sa.NFCProtocol
    	return unsafe.Pointer(&sa.raw), SizeofSockaddrNFC, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/extensions/v1beta1/types_swagger_doc_generated.go

    	"updatedReplicas":     "Total number of non-terminated pods targeted by this deployment that have the desired template spec.",
    	"readyReplicas":       "Total number of ready pods targeted by this deployment.",
    	"availableReplicas":   "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 42.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/conversion/converter.go

    	// Note that the function may mutate in object and return it. A safe wrapper will make sure
    	// a safe converter will be returned.
    	Convert(in runtime.Object, targetGVK schema.GroupVersion) (runtime.Object, error)
    }
    
    // crConverter extends the delegate converter with generic CR conversion behaviour. The delegate will implement the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java

                    return false;
                }
                Element element = document.createElement("link");
                String targetId = String.format("%s.%s", classMetaData.getClassName(), href.substring(1));
                element.setAttribute("linkend", targetId);
                nodes.push(element);
                return true;
            }
    
            @Override
            public void onEndElement(String element) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 29.3K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/replica_calculator.go

    	removeMetricsForPods(metrics, ignoredPods)
    	removeMetricsForPods(metrics, unreadyPods)
    	if len(metrics) == 0 {
    		return 0, 0, 0, time.Time{}, fmt.Errorf("did not receive metrics for targeted pods (pods might be unready)")
    	}
    
    	requests, err := calculatePodRequests(podList, container, resource)
    	if err != nil {
    		return 0, 0, 0, time.Time{}, err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
Back to top