Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,203 for configv1 (4.22 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsFailureUrl.java

        public String getConfigId() {
            checkSpecifiedProperty("configId");
            return convertEmptyToNull(configId);
        }
    
        public void setConfigId(String value) {
            registerModifiedProperty("configId");
            this.configId = value;
        }
    
        public Integer getErrorCount() {
            checkSpecifiedProperty("errorCount");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java

                logger.warn("Failed to access a crawling config cache: {}", configId, e);
                return null;
            }
        }
    
        public OptionalThing<String> getPipeline(final String configId) {
            final CrawlingConfig config = getCrawlingConfig(configId);
            if (config == null) {
                return OptionalThing.empty();
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. cmd/ilm-config.go

    package cmd
    
    import (
    	"sync"
    
    	"github.com/minio/minio/internal/config/ilm"
    )
    
    var globalILMConfig = ilmConfig{
    	cfg: ilm.Config{
    		ExpirationWorkers: 100,
    		TransitionWorkers: 100,
    	},
    }
    
    type ilmConfig struct {
    	mu  sync.RWMutex
    	cfg ilm.Config
    }
    
    func (c *ilmConfig) getExpirationWorkers() int {
    	c.mu.RLock()
    	defer c.mu.RUnlock()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 05 02:50:24 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. cluster/gce/config-common.sh

    # Location of kubelet image credential provider config file on windows
    export AUTH_PROVIDER_GCP_LINUX_CONF_FILE="${AUTH_PROVIDER_GCP_LINUX_CONF_FILE:-/home/kubernetes/cri-auth-config.yaml}"
    # Directory of kubelet image credential provider binary files on windows
    export AUTH_PROVIDER_GCP_WINDOWS_BIN_DIR=${AUTH_PROVIDER_GCP_WINDOWS_BIN_DIR:-${WINDOWS_NODE_DIR}}
    # Location of kubelet image credential provider config file on windows
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:06:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. cmd/kubelet/app/server_bootstrap_test.go

    	// when no cert is provided, write nothing to disk
    	config1 := &restclient.Config{
    		UserAgent: "FirstClient",
    		Host:      "http://localhost",
    	}
    	config2 := &restclient.Config{
    		UserAgent: "SecondClient",
    		Host:      "http://localhost",
    	}
    	nodeName := types.NodeName("test")
    	if _, err := buildClientCertificateManager(config1, config2, testDir, nodeName); err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 01 05:59:41 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

        @Size(max = 1000)
        public String configId;
    
        public String getCurrentPageNumber() {
            return pageNumber;
        }
    
        public void initialize() {
            id = null;
            url = null;
            threadName = null;
            errorName = null;
            errorLog = null;
            errorCount = null;
            lastAccessTime = null;
            configId = null;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java

                }
                final String configId = DocumentUtil.getValue(doc, fessConfig.getIndexFieldConfigId(), String.class);
                if (configId == null || configId.length() < 2) {
                    throw new ThumbnailGenerationException("Invalid configId: " + configId);
                }
                return consumer.test(configId, url);
            } catch (final ThumbnailGenerationException e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. internal/config/drive/drive.go

    }
    
    var configLk sync.RWMutex
    
    // Config represents the subnet related configuration
    type Config struct {
    	// MaxTimeout - maximum timeout for a drive operation
    	MaxTimeout time.Duration `json:"maxTimeout"`
    }
    
    // Update - updates the config with latest values
    func (c *Config) Update(new Config) error {
    	configLk.Lock()
    	defer configLk.Unlock()
    	c.MaxTimeout = getMaxTimeout(new.MaxTimeout)
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tests/test_graph_tftop_k.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x" }
      shape {
        dim { size: 5 }
      }
    }
    fetch {
      id { node_name: "values" }
    }
    fetch {
      id { node_name: "indices" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 20 09:03:59 UTC 2018
    - 193 bytes
    - Viewed (0)
  10. tensorflow/compiler/aot/test_graph_tfunknownop.config.pbtxt

    # Text form of tensorflow.tf2xla.Config proto.
    feed {
      id { node_name: "x_const" }
      shape {
        dim { size: 1 }
      }
    }
    feed {
      id { node_name: "y_const" }
      shape {
        dim { size: 1 }
      }
    }
    fetch {
      id { node_name: "x_y_sum" }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Sep 16 02:38:25 UTC 2017
    - 233 bytes
    - Viewed (0)
Back to top