Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 81 for copiedS (0.26 sec)

  1. pkg/kubelet/status/status_manager_test.go

    			original := tc.pod.DeepCopy()
    			syncer.SetPodStatus(original, original.Status)
    
    			copied := tc.pod.DeepCopy()
    			if tc.updateFn != nil {
    				tc.updateFn(copied)
    			}
    			expected := copied.DeepCopy()
    
    			syncer.TerminatePod(copied)
    			status := expectPodStatus(t, syncer, tc.pod.DeepCopy())
    			if tc.expectFn != nil {
    				tc.expectFn(t, status)
    				return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Copies an iterator's elements into an array. The iterator will be left exhausted: its {@code
       * hasNext()} method will return {@code false}.
       *
       * @param iterator the iterator to copy
       * @param type the type of the elements
       * @return a newly-allocated array into which all the elements of the iterator have been copied
       */
      @GwtIncompatible // Array.newInstance(Class, int)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/Iterators.java

      }
    
      /**
       * Copies an iterator's elements into an array. The iterator will be left exhausted: its {@code
       * hasNext()} method will return {@code false}.
       *
       * @param iterator the iterator to copy
       * @param type the type of the elements
       * @return a newly-allocated array into which all the elements of the iterator have been copied
       */
      @GwtIncompatible // Array.newInstance(Class, int)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    }
    
    // MemProfile returns a profile of memory allocated and freed per allocation
    // site.
    //
    // MemProfile returns n, the number of records in the current memory profile.
    // If len(p) >= n, MemProfile copies the profile into p and returns n, true.
    // If len(p) < n, MemProfile does not change p and returns n, false.
    //
    // If inuseZero is true, the profile includes allocation records
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/Sets.java

       * set of size {@code m x n x p}, its actual memory consumption is much smaller. When the
       * cartesian set is constructed, the input sets are merely copied. Only as the resulting set is
       * iterated are the individual lists created, and these are not retained after iteration.
       *
       * @param sets the sets to choose elements from, in the order that the elements chosen from those
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

        }
    
        /**
         * Instead of copying a configuration's roles outright, we allow copied configurations
         * to assume any role. However, any roles which were previously disabled will become
         * deprecated in the copied configuration. In 9.0, we will update this to copy
         * roles and deprecations without modification. Or, better yet, we will remove support
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/dwarf.go

    		ds := loader.Sym(pdie.Sym.(dwSym))
    		d.rtmap[ds] = gts
    		d.tdmap[gts] = ds
    	}
    
    	return d.dtolsym(pdie.Sym)
    }
    
    // Copies src's children into dst. Copies attributes by value.
    // DWAttr.data is copied as pointer only. If except is one of
    // the top-level children, it will not be copied.
    func (d *dwctxt) copychildrenexcept(ctxt *Link, dst *dwarf.DWDie, src *dwarf.DWDie, except *dwarf.DWDie) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

    # limitations under the License.
    
    <#
    .SYNOPSIS
      Library for configuring Windows nodes and joining them to the cluster.
    
    .NOTES
      This module depends on common.psm1.
    
      Some portions copied / adapted from
      https://github.com/Microsoft/SDN/blob/master/Kubernetes/windows/start-kubelet.ps1.
    
    .EXAMPLE
      Suggested usage for dev/test:
        [Net.ServicePointManager]::SecurityProtocol = `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_function_test.cc

      }
    
      // Verify that stack traces of func is copied to graph function library.
      ASSERT_NE(func_stack_traces, nullptr);
      EXPECT_EQ(func_stack_traces->size(), 4);
      EXPECT_EQ(func_stack_traces->at("neg")->ToString({}), kNegStackToString);
      EXPECT_EQ(func_stack_traces->at("feed")->ToString({}), kFeedStackToString);
    
      // Verify that stack traces of grad_func is copied to graph function library.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  10. src/crypto/x509/x509.go

    	// parsed by this package. When marshaling certificates, the Extensions
    	// field is ignored, see ExtraExtensions.
    	Extensions []pkix.Extension
    
    	// ExtraExtensions contains extensions to be copied, raw, into any
    	// marshaled certificates. Values override any extensions that would
    	// otherwise be produced based on the other fields. The ExtraExtensions
    	// field is not populated when parsing certificates, see Extensions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
Back to top