Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 207 for INITIALIZING (0.34 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/AggregateFutureStateFallbackAtomicHelperTest.java

          }
        }
        return suite;
      }
    
      @Override
      public void runTest() throws Exception {
        // First ensure that our classloaders are initializing the correct helper versions
        checkHelperVersion(getClass().getClassLoader(), "SafeAtomicHelper");
        checkHelperVersion(NO_ATOMIC_FIELD_UPDATER, "SynchronizedAtomicHelper");
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 10 19:45:10 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/plugin/pkg/audit/webhook/webhook_test.go

    		Duration: 500 * time.Millisecond,
    		Factor:   1.5,
    		Jitter:   0.2,
    		Steps:    5,
    	}
    	b, err := NewBackend(f.Name(), groupVersion, retryBackoff, nil)
    	require.NoError(t, err, "initializing backend")
    
    	return b.(*backend)
    }
    
    func TestWebhook(t *testing.T) {
    	versions := []schema.GroupVersion{auditv1.SchemeGroupVersion}
    	for _, version := range versions {
    		gotEvents := false
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 08 06:37:26 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/BuildInitPluginIntegrationTest.groovy

            then:
            succeeds "init"
            targetDir.file("settings.gradle.kts").assertIsFile()
            targetDir.file("build.gradle.kts").assertIsFile()
        }
    
        def "fails when initializing in a project directory of another build that contains a build script"() {
            when:
            containerDir.file("settings.gradle") << """
                rootProject.name = 'root'
                include('${targetDir.name}')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:39:44 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

          }
        }
        return suite;
      }
    
      @Override
      public void runTest() throws Exception {
        // First ensure that our classloaders are initializing the correct helper versions
        checkHelperVersion(getClass().getClassLoader(), "UnsafeAtomicHelper");
        checkHelperVersion(NO_UNSAFE, "SafeAtomicHelper");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. cluster/images/etcd/migrate/data_dir_test.go

    		t.Fatalf("Failed initialize data directory %s: %v", d.path, err)
    	}
    	exists, err = d.versionFile.Exists()
    	if err != nil {
    		t.Fatal(err)
    	}
    	if exists {
    		t.Fatalf("Expected version file %s not to exist after initializing non-empty data-dir", d.versionFile.path)
    	}
    }
    
    func TestNonexistingDataDir(t *testing.T) {
    	targetVersion := &EtcdVersionPair{&EtcdVersion{latestVersion}, storageEtcd3}
    	path := newTestPath(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 28 07:33:23 UTC 2022
    - 4.5K bytes
    - Viewed (0)
  6. plugin/pkg/admission/podtolerationrestriction/admission_test.go

    			}
    
    			mockClient := fake.NewSimpleClientset(namespace)
    			handler, informerFactory, err := newHandlerForTest(mockClient)
    			if err != nil {
    				t.Fatalf("unexpected error initializing handler: %v", err)
    			}
    			stopCh := make(chan struct{})
    			defer close(stopCh)
    			informerFactory.Start(stopCh)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part1_gradle_init.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[part1_gradle_init]]
    = Part 1: Initializing the Project
    
    Learn the basics of Gradle by creating a Java app using Gradle init.
    
    ****
    **In this section you will:**
    
    - Initialize a new Gradle project
    - Build the project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureFallbackAtomicHelperTest.java

          }
        }
        return suite;
      }
    
      @Override
      public void runTest() throws Exception {
        // First ensure that our classloaders are initializing the correct helper versions
        checkHelperVersion(getClass().getClassLoader(), "UnsafeAtomicHelper");
        checkHelperVersion(NO_UNSAFE, "SafeAtomicHelper");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/join/preflight.go

    			return errors.New(msg.String())
    		}
    
    		// run kubeadm init preflight checks for checking all the prerequisites
    		fmt.Println("[preflight] Running pre-flight checks before initializing the new control plane instance")
    
    		if err := preflight.RunInitNodeChecks(utilsexec.New(), initCfg, j.IgnorePreflightErrors(), true, hasCertificateKey); err != nil {
    			return err
    		}
    
    		if j.DryRun() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. cluster/images/etcd/migrate/data_dir.go

    limitations under the License.
    */
    
    package main
    
    import (
    	"fmt"
    	"io"
    	"os"
    	"path/filepath"
    	"strings"
    
    	"k8s.io/klog/v2"
    )
    
    // DataDirectory provides utilities for initializing and backing up an
    // etcd "data-dir" as well as managing a version.txt file to track the
    // etcd server version and storage version of the etcd data in the
    // directory.
    type DataDirectory struct {
    	path        string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 09 19:13:17 UTC 2021
    - 5.2K bytes
    - Viewed (0)
Back to top