Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 57 of 57 for iteratorAt (0.52 sec)

  1. src/main/webapp/js/admin/jquery-3.6.3.min.js

    i]);return r},map:function(e,t,n){var r,i,o=0,a=[];if(p(e))for(r=e.length;o<r;o++)null!=(i=t(e[o],o,n))&&a.push(i);else for(o in e)null!=(i=t(e[o],o,n))&&a.push(i);return g(a)},guid:1,support:v}),"function"==typeof Symbol&&(E.fn[Symbol.iterator]=t[Symbol.iterator]),E.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),function(e,t){n["[object "+t+"]"]=t.toLowerCase()});var d=function(n){var e,d,b,o,i,h,f,g,w,u,l,T,C,a,S,y,s,c,v,E="sizzle"+1*new Date,p=n.documen...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 87.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Some access patterns that potentially enumerate all environment variables or system properties (for example, calling `System.getenv().forEach()` or using the iterator of its `keySet()`) are
    discouraged.
    In this case, Gradle cannot find out what properties are actual build configuration inputs, so every available property becomes one.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_test.cc

    limitations under the License.
    ==============================================================================*/
    
    #include "tensorflow/c/c_api.h"
    
    #include <algorithm>
    #include <cstddef>
    #include <iterator>
    #include <memory>
    #include <vector>
    
    #include "tensorflow/c/c_api_internal.h"
    #include "tensorflow/c/c_test_util.h"
    #include "tensorflow/c/tf_buffer.h"
    #include "tensorflow/c/tf_buffer_internal.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			},
    		},
    	}
    
    	for _, tc := range testCases {
    		// If using t.Parallel() you must copy the iteration to a new local variable
    		// https://github.com/golang/go/wiki/CommonMistakes#using-goroutines-on-loop-iterator-variables
    		tc := tc
    		t.Run(tc.name, func(t *testing.T) {
    			t.Parallel()
    			// Setup kube caches
    			controller, fx := NewFakeControllerWithOptions(t, FakeControllerOptions{})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      // forward_pass_ops are dataset and variable ops.
      int64_t resource_count = 0;
      for (auto argument : loop_body_func.getArguments()) {
        // Check that all resource arguments are either fed to iterator get next
        // or a TPUReplicatedInput with is_packed.
    
        if (IsResourceType(argument.getType())) {
          resource_count++;
          bool is_variable = false;
          bool is_non_variable = false;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  6. cmd/xl-storage.go

    	"path/filepath"
    	"runtime"
    	"slices"
    	"strconv"
    	"strings"
    	"sync"
    	"sync/atomic"
    	"syscall"
    	"time"
    
    	"github.com/dustin/go-humanize"
    	"github.com/google/uuid"
    	jsoniter "github.com/json-iterator/go"
    	"github.com/klauspost/filepathx"
    	"github.com/minio/madmin-go/v3"
    	"github.com/minio/minio/internal/bucket/lifecycle"
    	"github.com/minio/minio/internal/cachevalue"
    	"github.com/minio/minio/internal/config/storageclass"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  7. src/runtime/mheap.go

    	return i.s != nil
    }
    
    func (i *specialsIter) next() {
    	i.pprev = &i.s.next
    	i.s = *i.pprev
    }
    
    // unlinkAndNext removes the current special from the list and moves
    // the iterator to the next special. It returns the unlinked special.
    func (i *specialsIter) unlinkAndNext() *special {
    	cur := i.s
    	i.s = cur.next
    	*i.pprev = i.s
    	return cur
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top