Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 206 for pubdate (0.36 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                String pubDate = substitute(attributes.getValue("publication"));
                if (pubDate != null && pubDate.length() > 0) {
                    try {
                        final SimpleDateFormat ivyDateFormat = new SimpleDateFormat(IVY_DATE_FORMAT_PATTERN);
                        getMd().setPublicationDate(ivyDateFormat.parse(pubDate));
                    } catch (ParseException e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. api/discovery/aggregated_v2.json

                        "get",
                        "patch",
                        "update"
                      ]
                    }
                  ],
                  "verbs": [
                    "create",
                    "delete",
                    "deletecollection",
                    "get",
                    "list",
                    "patch",
                    "update",
                    "watch"
                  ]
                }
              ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  3. api/discovery/aggregated_v2beta1.json

                        "get",
                        "patch",
                        "update"
                      ]
                    }
                  ],
                  "verbs": [
                    "create",
                    "delete",
                    "deletecollection",
                    "get",
                    "list",
                    "patch",
                    "update",
                    "watch"
                  ]
                }
              ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. plugin/pkg/admission/noderestriction/admission_test.go

    			podsGetter: existingPods,
    			attributes: admission.NewAttributesRecord(mynodeObjConfigB, mynodeObjConfigA, nodeKind, mynodeObj.Namespace, mynodeObj.Name, nodeResource, "", admission.Update, &metav1.UpdateOptions{}, false, mynode),
    			err:        "update configSource to a new non-nil configSource",
    		},
    		{
    			name:       "allow update of my node: non-nil configSource unchanged",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  5. pkg/kubelet/pod_workers.go

    	return ctx, update, true, true, true
    }
    
    func podUIDAndRefForUpdate(update UpdatePodOptions) (types.UID, klog.ObjectRef) {
    	if update.RunningPod != nil {
    		return update.RunningPod.ID, klog.KObj(update.RunningPod.ToAPIPod())
    	}
    	return update.Pod.UID, klog.KObj(update.Pod)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 02 13:22:37 UTC 2024
    - 74.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/prove.go

    				ft.update(b, v, ft.zero, signed, gt|eq)
    				// TODO: we could also do <= 64/32/16/8, if that helped.
    			case OpAnd64, OpAnd32, OpAnd16, OpAnd8:
    				ft.update(b, v, v.Args[1], unsigned, lt|eq)
    				ft.update(b, v, v.Args[0], unsigned, lt|eq)
    				for i := 0; i < 2; i++ {
    					if isNonNegative(v.Args[i]) {
    						ft.update(b, v, v.Args[i], signed, lt|eq)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

            AbstractFuture<?> future, @CheckForNull Waiter expect, @CheckForNull Waiter update) {
          return waitersUpdater.compareAndSet(future, expect, update);
        }
    
        @Override
        boolean casListeners(AbstractFuture<?> future, @CheckForNull Listener expect, Listener update) {
          return listenersUpdater.compareAndSet(future, expect, update);
        }
    
        /** Performs a GAS operation on the {@link #listeners} field. */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  8. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        Listener gasListeners(AbstractFuture<?> future, Listener update) {
          return (Listener) UNSAFE.getAndSetObject(future, LISTENERS_OFFSET, update);
        }
    
        /** Performs a GAS operation on the {@link #waiters} field. */
        @Override
        Waiter gasWaiters(AbstractFuture<?> future, Waiter update) {
          return (Waiter) UNSAFE.getAndSetObject(future, WAITERS_OFFSET, update);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  9. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

    ...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1/types.go

    	// Replace the old ReplicaSets by new one using rolling update i.e gradually scale down the old ReplicaSets and scale up the new one.
    	RollingUpdateDeploymentStrategyType DeploymentStrategyType = "RollingUpdate"
    )
    
    // Spec to control the desired behavior of rolling update.
    type RollingUpdateDeployment struct {
    	// The maximum number of pods that can be unavailable during the update.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
Back to top