Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 562 for Shardz (0.18 sec)

  1. src/cmd/compile/internal/test/zerorange_test.go

    // need to be zeroed. Hence, we are testing compilation completes successfully when
    // zerorange calls of various sizes (8-136 bytes) are generated. We are not
    // testing runtime correctness (which is hard to do for the current uses of
    // ZeroRange).
    
    func TestZeroRange(t *testing.T) {
    	testZeroRange8(t)
    	testZeroRange16(t)
    	testZeroRange32(t)
    	testZeroRange64(t)
    	testZeroRange136(t)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 18:18:07 UTC 2022
    - 4.1K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Platform.java

       */
      /*
       * The new array contains nulls, even if the old array did not. If we wanted to be accurate, we
       * would declare a return type of `@Nullable T[]`. However, we've decided not to think too hard
       * about arrays for now, as they're a mess. (We previously discussed this in the review of
       * ObjectArrays, which is the main caller of this method.)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Platform.java

       */
      /*
       * The new array contains nulls, even if the old array did not. If we wanted to be accurate, we
       * would declare a return type of `@Nullable T[]`. However, we've decided not to think too hard
       * about arrays for now, as they're a mess. (We previously discussed this in the review of
       * ObjectArrays, which is the main caller of this method.)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  4. src/internal/coverage/cfile/emit.go

    		" fnID:", fnID, " numCtrs:", nCtrs)
    	println("list of hard-coded runtime package IDs needs revising.")
    	println("[see the comment on the 'rtPkgs' var in ")
    	println(" <goroot>/src/internal/coverage/pkid.go]")
    	println("registered list:")
    	for k, b := range metaList {
    		print("slot: ", k, " path='", b.PkgPath, "' ")
    		if b.PkgID != -1 {
    			print(" hard-coded id: ", b.PkgID)
    		}
    		println("")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:57:47 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  5. Jenkinsfile

                            }
                        }
                    }
                }
            }
        }
    }
    
    // run the parallel ITs
    parallel(runITsTasks)
    
    // JENKINS-34376 seems to make it hard to detect the aborted builds
    } catch (org.jenkinsci.plugins.workflow.steps.FlowInterruptedException e) {
        echo "[FAILURE-002] FlowInterruptedException ${e}"
        // this ambiguous condition means a user probably aborted
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/cli-runtime/pkg/resource/query_param_verifier_v3_test.go

    type fakeRoot struct {
    	spec *spec3.OpenAPI
    }
    
    func (f *fakeRoot) GroupVersions() ([]schema.GroupVersion, error) {
    	// Unused
    	return nil, nil
    }
    
    // GVSpec returns hard-coded OpenAPI V3 document.
    func (f *fakeRoot) GVSpec(gv schema.GroupVersion) (*spec3.OpenAPI, error) {
    	return f.spec, nil
    }
    
    func (f *fakeRoot) GVSpecAsMap(gv schema.GroupVersion) (map[string]interface{}, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 12 04:44:45 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. plugin/pkg/admission/antiaffinity/admission_test.go

    	"testing"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apiserver/pkg/admission"
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    // ensures the hard PodAntiAffinity is denied if it defines TopologyKey other than kubernetes.io/hostname.
    // TODO: Add test case "invalid topologyKey in requiredDuringSchedulingRequiredDuringExecution then admission fails"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 20 15:11:00 UTC 2019
    - 7.9K bytes
    - Viewed (0)
  8. src/runtime/mgcpacer.go

    //
    // The worst case result of this raciness is that we may miss a larger shift
    // in the ratio (say, if we decide to pace more aggressively against the
    // hard heap goal) but even this "hard goal" is best-effort (see #40460).
    // The dedicated GC should ensure we don't exceed the hard goal by too much
    // in the rare case we do exceed it.
    //
    // It should only be called when gcBlackenEnabled != 0 (because this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_signal_ios_arm64.c

    #endif
    
    	if (0) {
    		// Useful debugging logic when panicmem is broken.
    		//
    		// Sends the first SIGSEGV and lets lldb catch the
    		// second one, avoiding a loop that locks up iOS
    		// devices requiring a hard reboot.
    		fprintf(stderr, "runtime/cgo: caught exc_bad_access\n");
    		fprintf(stderr, "__lr = %llx\n", thread_state.ts_64.__lr);
    		fprintf(stderr, "__pc = %llx\n", thread_state.ts_64.__pc);
    		static int pass1 = 0;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:04:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. test/escape.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    // Test for correct heap-moving of escaped variables.
    // It is hard to check for the allocations, but it is easy
    // to check that if you call the function twice at the
    // same stack level, the pointers returned should be
    // different.
    
    var bad = false
    
    var allptr = make([]*int, 0, 100)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 06 18:34:24 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top