Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 968 for setOp (0.05 sec)

  1. pkg/volume/volume.go

    	// GetAttributes returns the attributes of the mounter.
    	// This function is called after SetUp()/SetUpAt().
    	GetAttributes() Attributes
    }
    
    // Unmounter interface provides methods to cleanup/unmount the volumes.
    type Unmounter interface {
    	Volume
    	// TearDown unmounts the volume from a self-determined directory and
    	// removes traces of the SetUp procedure.
    	TearDown() error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java

                RenderDataUtil.register(data, "elevateWordItems", elevateWordService.getElevateWordList(elevateWordPager)); // page navi
            }).useForm(SearchForm.class, setup -> {
                setup.setup(form -> {
                    copyBeanToBean(elevateWordPager, form, op -> op.include("id"));
                });
            });
        }
    
        private HtmlResponse asEditHtml() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  3. src/runtime/mgcscavenge_test.go

    		request, expect uintptr
    	}
    	minPages := PhysPageSize / PageSize
    	if minPages < 1 {
    		minPages = 1
    	}
    	type setup struct {
    		beforeAlloc map[ChunkIdx][]BitRange
    		beforeScav  map[ChunkIdx][]BitRange
    		expect      []test
    		afterScav   map[ChunkIdx][]BitRange
    	}
    	tests := map[string]setup{
    		"AllFreeUnscavExhaust": {
    			beforeAlloc: map[ChunkIdx][]BitRange{
    				BaseChunkIdx:     {},
    				BaseChunkIdx + 1: {},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

                RenderDataUtil.register(data, "dataConfigItems", dataConfigService.getDataConfigList(dataConfigPager));
                registerHandlerNames(data);
            }).useForm(SearchForm.class, setup -> {
                setup.setup(form -> {
                    copyBeanToBean(dataConfigPager, form, op -> op.include("name", "handlerName", "description"));
                });
            });
        }
    
        private HtmlResponse asEditHtml() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  5. cmd/erasure-decode_test.go

    	}
    }
    
    // Benchmarks
    
    func benchmarkErasureDecode(data, parity, dataDown, parityDown int, size int64, b *testing.B) {
    	setup, err := newErasureTestSetup(b, data, parity, blockSizeV2)
    	if err != nil {
    		b.Fatalf("failed to create test setup: %v", err)
    	}
    	disks := setup.disks
    	erasure, err := NewErasure(context.Background(), data, parity, blockSizeV2)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jan 30 20:43:25 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningExtension.java

            return doSignOperation(operation -> operation.configure(setup));
        }
    
        protected SignOperation doSignOperation(Action<SignOperation> setup) {
            final SignOperation operation = objectFactory().newInstance(SignOperationInternal.class);
            addSignatureSpecConventions(operation);
            setup.execute(operation);
            operation.execute();
            return operation;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestFailureProgressEventCrossVersionTest.groovy

    @ToolingApiVersion(">=7.6")
    @TargetGradleVersion(">=7.6")
    class TestFailureProgressEventCrossVersionTest extends ToolingApiSpecification {
    
        ProgressEventCollector progressEventCollector
    
        def setup() {
            // Avoid mixing JUnit dependencies with the ones from the JVM running this test
            // For example, when using PTS/TD for running this test, the JUnit Platform Launcher classes from the GE plugin take precedence
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  8. cmd/server-main.go

         {{.Prompt}} {{.HelpName}} /mnt/data{1...64}
    
      3. Start distributed MinIO server on an 32 node setup with 32 drives each, run following command on all the nodes
         {{.Prompt}} {{.HelpName}} http://node{1...32}.example.com/mnt/export{1...32}
    
      4. Start distributed MinIO server in an expanded setup, run the following command on all the nodes
         {{.Prompt}} {{.HelpName}} http://node{1...16}.example.com/mnt/export{1...32} \
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  9. pkg/volume/emptydir/empty_dir_test.go

    	// Check the number of mounts performed during setup
    	if e, a := config.expectedSetupMounts, len(log); e != a {
    		t.Errorf("Expected %v physicalMounter calls during setup, got %v", e, a)
    	} else if config.expectedSetupMounts == 1 &&
    		(log[0].Action != mount.FakeActionMount || (log[0].FSType != "tmpfs" && log[0].FSType != "hugetlbfs")) {
    		t.Errorf("Unexpected physicalMounter action during setup: %#v", log[0])
    	}
    	physicalMounter.ResetLog()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  10. pkg/volume/testing/volume_host.go

    	}
    	host.subpather = &subpath.FakeSubpath{}
    	host.informerFactory = informers.NewSharedInformerFactory(kubeClient, time.Minute)
    	// Wait until the InitPlugins setup is finished before returning from this setup func
    	if err := host.WaitForKubeletErrNil(); err != nil {
    		t.Fatalf("Failed to wait for kubelet err to be nil while creating fake volume host: %v", err)
    	}
    	return host
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top