Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for addLink (0.17 sec)

  1. CHANGELOG/CHANGELOG-1.4.md

    * Bump GCE ContainerVM to container-vm-v20170201 to address CVE-2016-9962. ([#40828](https://github.com/kubernetes/kubernetes/pull/40828), [@zmerlynn](https://github.com/zmerlynn))
    * Adding vmdk file extension for vmDiskPath in vsphere DeleteVolume ([#40538](https://github.com/kubernetes/kubernetes/pull/40538), [@divyenpatel](https://github.com/divyenpatel))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  2. tensorflow/c/c_api.cc

                                   TF_Status* status, TF_Output* dy) {
    #if defined(IS_MOBILE_PLATFORM) || defined(IS_SLIM_BUILD)
      status->status = tensorflow::errors::Unimplemented(
          "Adding gradients is not supported on mobile. File a bug at "
          "https://github.com/tensorflow/tensorflow/issues if this feature is "
          "important to you");
    #else
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        performs in-function propagation, as well as cross-function propagation from
        callers to callees.
    
        This pass changes the module by adding "tf.device" attribute to function
        arguments and adding "device" attribute to TF ops.
    
        For example, given the function
    
        ```mlir
          !tf_res = type tensor<*x!tf_type.resource<tensor<32xf32>>>
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.5.md

    * Update GCE ContainerVM deployment to container-vm-v20170117 to pick up CVE fixes in base image. ([#40094](https://github.com/kubernetes/kubernetes/pull/40094), [@zmerlynn](https://github.com/zmerlynn))
    * Adding vmdk file extension for vmDiskPath in vsphere DeleteVolume ([#40538](https://github.com/kubernetes/kubernetes/pull/40538), [@divyenpatel](https://github.com/divyenpatel))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    	// define file config source
    	if kubeCfg.StaticPodPath != "" {
    		klog.InfoS("Adding static pod path", "path", kubeCfg.StaticPodPath)
    		config.NewSourceFile(kubeCfg.StaticPodPath, nodeName, kubeCfg.FileCheckFrequency.Duration, cfg.Channel(ctx, kubetypes.FileSource))
    	}
    
    	// define url config source
    	if kubeCfg.StaticPodURL != "" {
    		klog.InfoS("Adding pod URL with HTTP header", "URL", kubeCfg.StaticPodURL, "header", manifestURLHeader)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			"node1": {medPriorityPodInfo, unschedulablePodInfo},
    		},
    	}
    	if diff := cmp.Diff(q.nominator, expectedNominatedPods, nominatorCmpOpts...); diff != "" {
    		t.Errorf("Unexpected diff after adding pods (-want, +got):\n%s", diff)
    	}
    	if p, err := q.Pop(logger); err != nil || p.Pod != highPriorityPodInfo.Pod {
    		t.Errorf("Expected: %v after Pop, but got: %v", highPriorityPodInfo.Pod.Name, p.Pod.Name)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/LocalCache.java

          while (valueReferenceQueue.poll() != null) {}
        }
    
        // recency queue, shared by expiration and eviction
    
        /**
         * Records the relative order in which this read was performed by adding {@code entry} to the
         * recency queue. At write-time, or when the queue is full past the threshold, the queue will be
         * drained and the entries therein processed.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      Status RemoveBackedges();
    
      // Restores backedges removed during shape inference to the final Function.
      Status AddBackedges();
    
      // Restores a single backedge in the Function by adding a replicated
      // operation before the dst operation.
      Status AddBackedge(mlir::Operation* sink, mlir::Operation* dst,
                         int dst_input);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

          while (valueReferenceQueue.poll() != null) {}
        }
    
        // recency queue, shared by expiration and eviction
    
        /**
         * Records the relative order in which this read was performed by adding {@code entry} to the
         * recency queue. At write-time, or when the queue is full past the threshold, the queue will be
         * drained and the entries therein processed.
         *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  10. pkg/apis/batch/validation/validation_test.go

    			},
    		},
    		"update not modifying TZ but adding .spec.timeZone should fail": {
    			cronJob:   invalidCronJob,
    			createErr: "cannot use TZ or CRON_TZ in schedule, use timeZone field instead",
    			update: func(cj *batch.CronJob) {
    				cj.Spec.TimeZone = &timeZoneUTC
    			},
    			updateErr: "cannot use both timeZone field and TZ or CRON_TZ in schedule",
    		},
    		"update adding TZ should fail": {
    			cronJob: validCronJob,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 20:49:09 UTC 2024
    - 124.3K bytes
    - Viewed (0)
Back to top