Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 968 for setOp (0.14 sec)

  1. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/dependencies/JavaConfigurationSetupIntegrationTest.groovy

            marker == VALID
        }
    
        static deprecated(String alternatives) {
            !(alternatives in [VALID, FORBIDDEN, DOES_NOT_EXIST])
        }
    
        def "the #configuration configuration is setup correctly for dependency declaration in the #plugin plugin"() {
            given:
            buildFile << """
                plugins { id '$plugin' }
                dependencies {
                    $configuration 'some:module:1.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/Kerb5Authenticator.java

        }
    
    
        /**
         * Set the user name which is used to setup <code>GSSContext</code>. If null
         * is set, the default user will be used which is retrieved from the first
         * TGT found in <code>Subject</code> .
         *
         * @param name
         *            the user name used to setup <code>GSSContext</code>
         */
        public void setUser ( String name ) {
            this.user = name;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 13K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

    
            when:
            EnvVariableInjection.environmentVariable("CI1", "1").setup(this)
            configurationCacheRun("print")
            outputContains("Execution: CI1 = 1")
    
            then:
            configurationCache.assertStateLoaded()
    
            when:
            EnvVariableInjection.environmentVariables(CI1: "1", CI2: "2").setup(this)
            configurationCacheRun("print")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

        //
    
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            saveToken();
            return asHtml(path_AdminGeneral_AdminGeneralJsp).useForm(EditForm.class, setup -> {
                setup.setup(form -> {
                    updateForm(fessConfig, form);
                });
            });
        }
    
        @Execute
        @Secured({ ROLE })
        public HtmlResponse sendmail(final MailForm form) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  5. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/S3ClientIntegrationTest.groovy

        @Rule
        public final S3Server server = new S3Server(temporaryFolder)
    
        def setup() {
            awsCredentials.setAccessKey(accessKey)
            awsCredentials.setSecretKey(secret)
        }
    
        @Requires(UnitTestPreconditions.Jdk9OrLater)
        def "should perform #authenticationType put get and list on an S3 bucket"() {
            setup:
            def fileContents = 'This is only a test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. tensorflow/cc/gradients/nn_grad_test.cc

    }
    
    TEST_F(NNGradTest, MaxPoolGradHelper) {
      TensorShape x_shape({1, 2, 2, 1});
      TensorShape y_shape({1, 1, 1, 1});
      auto x = Placeholder(scope_, DT_FLOAT, Placeholder::Shape(x_shape));
      // Setup window and strides so that we only do one MaxPool.
      const std::vector<int> ksize{1, 2, 2, 1};
      const std::vector<int> strides{1, 2, 2, 1};
      auto y = MaxPool(scope_, x, ksize, strides, "VALID");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 22 20:45:22 UTC 2022
    - 15K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ToolingApiClientJdkCompatibilityTest.groovy

    import org.junit.Assume
    
    import static org.gradle.tooling.internal.consumer.DefaultGradleConnector.MINIMUM_SUPPORTED_GRADLE_VERSION
    
    abstract class ToolingApiClientJdkCompatibilityTest extends AbstractIntegrationSpec {
    
        def setup() {
            System.out.println("TAPI client is using Java " + clientJdkVersion)
    
            executer.beforeExecute {
                withToolchainDetectionEnabled()
            }
            buildFile << """
                plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. src/compress/bzip2/bzip2.go

    	bz2 := new(reader)
    	bz2.br = newBitReader(r)
    	return bz2
    }
    
    const bzip2FileMagic = 0x425a // "BZ"
    const bzip2BlockMagic = 0x314159265359
    const bzip2FinalMagic = 0x177245385090
    
    // setup parses the bzip2 header.
    func (bz2 *reader) setup(needMagic bool) error {
    	br := &bz2.br
    
    	if needMagic {
    		magic := br.ReadBits(16)
    		if magic != bzip2FileMagic {
    			return StructuralError("bad magic value")
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. pkg/kubelet/volumemanager/reconciler/reconstruct_test.go

    			if tc.expectMount {
    				// The volume should be fully mounted
    				waitForMount(t, fakePlugin, volumeName, rcInstance.actualStateOfWorld)
    				// SetUp was called and succeeded
    				if err := volumetesting.VerifySetUpCallCount(1, fakePlugin); err != nil {
    					t.Errorf("Expected SetUp() to be called, got %s", err)
    				}
    			} else {
    				// The test does not expect any change in ASW, yet it needs to wait for volume operations to finish
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_block_test.go

    	attachment.Status.Attached = true
    	_, err = csiMapper.k8s.StorageV1().VolumeAttachments().Create(context.TODO(), attachment, metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("failed to setup VolumeAttachment: %v", err)
    	}
    	t.Log("created attachment ", attachID)
    
    	stagingPath, err := csiMapper.SetUpDevice()
    	if err != nil {
    		t.Fatalf("mapper failed to SetupDevice: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top