Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 731 for expand1 (0.22 sec)

  1. src/main/webapp/js/admin/adminlte.min.js.map

    lapseIcon)\n        .removeClass(this._settings.expandIcon)\n\n      const expanded = $.Event(Event.EXPANDED)\n\n      this._element.trigger(expanded, this._parent)\n    }\n\n    remove() {\n      this._parent.slideUp()\n\n      const removed = $.Event(Event.REMOVED)\n\n      this._element.trigger(removed, this._parent)\n    }\n\n    toggle() {\n      if (this._parent.hasClass(ClassName.COLLAPSED)) {\n        this.expand()\n        return\n      }\n\n      this.collapse()\n    }\n    \n    maximize()...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Wed Feb 12 07:55:41 UTC 2020
    - 77K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

                'a.a',
                'dir/a.a',
                'dir/a.c'
            )
        }
    
        def "can expand tokens when copying"() {
            file('files/a.txt').text = "\$one,\${two}"
            buildScript """
                task copy(type: Copy) {
                    from 'files'
                    into 'dest'
                    expand(one: '1', two: 2)
                }
            """
    
            when:
            run 'copy'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  3. plugin/pkg/admission/storage/persistentvolume/resize/admission_test.go

    				},
    				Status: api.PersistentVolumeClaimStatus{
    					Capacity: getResourceList("1Gi"),
    					Phase:    api.ClaimBound,
    				},
    			},
    			checkError: expectNoError,
    		},
    		{
    			name:     "expand pvc in pending state",
    			resource: api.SchemeGroupVersion.WithResource("persistentvolumeclaims"),
    			oldObj: &api.PersistentVolumeClaim{
    				Spec: api.PersistentVolumeClaimSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultConditionalExecutionQueue.java

            try {
                // expand the thread pool until we hit max workers
                if (workerCount < getMaxWorkerCount()) {
                    expand(true);
                }
    
                queue.add(execution);
                workAvailable.signalAll();
            } finally {
                lock.unlock();
            }
        }
    
        @Override
        public void expand() {
            expand(false);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizerFactory.java

            delimiters = settings.get("delimiters", NGramSynonymTokenizer.DEFAULT_DELIMITERS);
            expand = settings.getAsBoolean("expand", true);
    
            settings.getAsBoolean("expand_ngram", false); // TODO remove
    
            synonymLoader = new SynonymLoader(env, settings, expand, SynonymLoader.getAnalyzer(ignoreCase));
            if (synonymLoader.getSynonymMap() == null) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/opensearch/extension/analysis/SynonymLoader.java

        private final Settings settings;
    
        private final boolean expand;
    
        private long reloadInterval = 0;
    
        private final Environment env;
    
        private volatile long lastModified;
    
        private volatile long lastChecked;
    
        private volatile SynonymMap synonymMap;
    
        public SynonymLoader(final Environment env, final Settings settings, final boolean expand, final Analyzer analyzer) {
            this.env = env;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  7. tools/docker-builder/dockerfile/parse.go

    		case "ENTRYPOINT":
    			s.entrypoint = c.Value
    		case "CMD":
    			s.cmd = c.Value
    		case "LABEL":
    			k := s.Expand(c.Value[0])
    			v := s.Expand(c.Value[1])
    			s.labels[k] = v
    		case "ENV":
    			k := s.Expand(c.Value[0])
    			v := s.Expand(c.Value[1])
    			s.env[k] = v
    		case "WORKDIR":
    			v := s.Expand(c.Value[0])
    			s.workdir = v
    		case "RUN":
    			if o.ignoreRuns {
    				log.Warnf("Skipping RUN: %v", c.Value)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/os/env_test.go

    	for _, test := range expandTests {
    		result := Expand(test.in, testGetenv)
    		if result != test.out {
    			t.Errorf("Expand(%q)=%q; expected %q", test.in, result, test.out)
    		}
    	}
    }
    
    var global any
    
    func BenchmarkExpand(b *testing.B) {
    	b.Run("noop", func(b *testing.B) {
    		var s string
    		b.ReportAllocs()
    		for i := 0; i < b.N; i++ {
    			s = Expand("tick tick tick tick", func(string) string { return "" })
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 04 15:31:54 UTC 2023
    - 5K bytes
    - Viewed (0)
  9. src/go/build/build_test.go

    	for _, test := range expandSrcDirTests {
    		output, _ := expandSrcDir(test.input, expandSrcDirPath)
    		if output != test.expected {
    			t.Errorf("%q expands to %q with SRCDIR=%q when %q is expected", test.input, output, expandSrcDirPath, test.expected)
    		} else {
    			t.Logf("%q expands to %q with SRCDIR=%q", test.input, output, expandSrcDirPath)
    		}
    	}
    }
    
    func TestShellSafety(t *testing.T) {
    	tests := []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 15 16:24:01 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  10. maven-model-builder/src/main/java/org/apache/maven/model/plugin/DefaultPluginConfigurationExpander.java

            Build build = model.getBuild();
    
            if (build != null) {
                expand(build.getPlugins());
    
                PluginManagement pluginManagement = build.getPluginManagement();
    
                if (pluginManagement != null) {
                    expand(pluginManagement.getPlugins());
                }
            }
        }
    
        private void expand(List<Plugin> plugins) {
            for (Plugin plugin : plugins) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top