Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 274 for wabt (0.22 sec)

  1. pkg/controller/cronjob/cronjob_controllerv2_test.go

    				} else {
    					if got, want := controllerRef.APIVersion, "batch/v1"; got != want {
    						t.Errorf("%s: controllerRef.APIVersion = %q, want %q", name, got, want)
    					}
    					if got, want := controllerRef.Kind, "CronJob"; got != want {
    						t.Errorf("%s: controllerRef.Kind = %q, want %q", name, got, want)
    					}
    					if got, want := controllerRef.Name, cj.Name; got != want {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Occasionally, you want to copy files or directories as _part_ of a task.
    For example, a custom archiving task based on an unsupported archive format might want to copy files to a temporary directory before they are archived.
    You still want to take advantage of Gradle's copy API without introducing an extra `Copy` task.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    	// Add CRD to the establishing controller queue.
    	// For HA clusters, we want to prevent race conditions when changing status to Established,
    	// so we want to be sure that CRD is Installing at least for 5 seconds before Establishing it.
    	// TODO: find a real HA safe checkpointing mechanism instead of an arbitrary wait.
    	if !apiextensionshelpers.IsCRDConditionTrue(newCRD, apiextensionsv1.Established) &&
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter_test.go

    	tests := []struct {
    		name   string
    		fields fields
    		args   args
    		want   bool
    	}{
    		{
    			name: "empty all",
    			args: args{},
    			want: false,
    		},
    		{
    			name: "driverPolicy is FileFSGroupPolicy",
    			args: args{
    				fsGroup:      new(int64),
    				driverPolicy: storage.FileFSGroupPolicy,
    			},
    			want: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  5. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    	}
    }
    
    func retryWithExponentialBackOff(initialDuration time.Duration, fn wait.ConditionFunc) error {
    	backoff := wait.Backoff{
    		Duration: initialDuration,
    		Factor:   3,
    		Jitter:   0,
    		Steps:    6,
    	}
    	return wait.ExponentialBackoff(backoff, fn)
    }
    
    func createTestClient(attachedVolumes ...v1.AttachedVolume) *fake.Clientset {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    	// sorted suffix array entry (for text[j:]) for which we know that j-1 is type L.
    	// Because j-1 is type L, inserting it into sa now will sort it correctly.
    	// But we want to distinguish a j-1 with j-2 of type L from type S.
    	// We can process the former but want to leave the latter for the caller.
    	// We record the difference by negating j-1 if it is preceded by type S.
    	// Either way, the insertion (into the text[j-1] bucket) is guaranteed to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/cmd/go/go_test.go

    		tg.run("list", "-deps", "math")
    		want := "unsafe\ninternal/cpu\nmath/bits\nmath\n"
    		out := tg.stdout.String()
    		if !strings.Contains(out, "internal/cpu") {
    			// Some systems don't use internal/cpu.
    			want = "unsafe\nmath/bits\nmath\n"
    		}
    		if tg.stdout.String() != want {
    			t.Fatalf("list -deps math: wrong order\nhave %q\nwant %q", tg.stdout.String(), want)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  8. src/crypto/des/des_test.go

    		if !bytes.Equal(result, tt.in) {
    			t.Errorf("#%d: result: %x want: %x", i, result, tt.in)
    		}
    	}
    }
    
    func TestDESEncryptBlock(t *testing.T) {
    	for i, tt := range encryptDESTests {
    		c := newCipher(tt.key)
    		out := make([]byte, len(tt.in))
    		c.Encrypt(out, tt.in)
    
    		if !bytes.Equal(out, tt.out) {
    			t.Errorf("#%d: result: %x want: %x", i, out, tt.out)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 16:49:56 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    		} else {
    			fs.Close()
    
    			// Chmod is needed because os.Create() ends up calling
    			// open(2) to create the file, so the final mode used is "mode &
    			// ~umask". But we want to make sure the specified mode is used
    			// in the file no matter what the umask is.
    			if err := m.osInterface.Chmod(containerLogPath, 0666); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    the relevant information, i.e. where the compiled test classes are — the `testClassesDirs` property — and what needs to be on the classpath when running them — `classpath`.
    
    Users commonly want to run integration tests after the unit tests, because they are often slower to run and you want the build to fail early on the unit tests rather than later on the integration tests. That's why the above example adds a `shouldRunAfter()` declaration. This is preferred over `mustRunAfter()` so that...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top