Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 773 for creation (0.21 sec)

  1. cmd/xl-storage_unix_test.go

    	"os"
    	"path"
    	"syscall"
    	"testing"
    )
    
    // Based on `man getumask` a vaporware GNU extension to glibc.
    // returns file mode creation mask.
    func getUmask() int {
    	mask := syscall.Umask(0)
    	syscall.Umask(mask)
    	return mask
    }
    
    // Tests if the directory and file creations happen with proper umask.
    func TestIsValidUmaskVol(t *testing.T) {
    	tmpPath := t.TempDir()
    	testCases := []struct {
    		volName       string
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Mon Jul 25 19:37:26 GMT 2022
    - 3.4K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/BuildDistributions.kt

    import model.Stage
    
    class BuildDistributions(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, init = {
        id("${model.projectId}_BuildDistributions")
        name = "Build Distributions"
        description = "Creation and verification of the distribution and documentation"
    
        applyDefaults(
            model,
            this,
            "packageBuild",
            extraParameters = buildScanTag("BuildDistributions") +
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Sep 22 09:52:00 GMT 2023
    - 970 bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/lifecycle/internal/ProjectArtifactFactory.java

    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.artifact.InvalidDependencyVersionException;
    
    /**
     * <p>
     * Component interface responsible for creation of MavenProject#dependencyArtifacts instances.
     * </p>
     * <strong>NOTE:</strong> This class is not part of any public api and can be changed or deleted without prior notice.
     *
     * @since 3.2.4
     */
    Java
    - Registered: Sun Apr 21 03:35:09 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 1.4K bytes
    - Viewed (0)
  4. src/main/config/es/fess_config_bad_word.json

                "type" : "keyword"
              },
              "updatedTime" : {
                "type" : "long"
              }
            }
          }
        },
        "settings" : {
          "index" : {
            "creation_date" : "1509021049746",
            "number_of_shards" : "5",
            "number_of_replicas" : "1",
            "uuid" : "0xToIxg0R1KjZqA0ynv9PQ",
            "version" : {
              "created" : "6000051"
            },
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 961 bytes
    - Viewed (0)
  5. src/main/config/es/fess_config_request_header.json

                "type" : "keyword"
              },
              "webConfigId" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
            "creation_date" : "1509021056434",
            "number_of_shards" : "5",
            "number_of_replicas" : "1",
            "uuid" : "Zrp1Be7PS1ySzKAjlrpICg",
            "version" : {
              "created" : "6000051"
            },
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 967 bytes
    - Viewed (0)
  6. manifests/charts/base/templates/reader-serviceaccount.yaml

    # This service account aggregates reader permissions for the revisions in a given cluster
    # Should be used for remote secret creation.
    apiVersion: v1
    kind: ServiceAccount
      {{- if .Values.global.imagePullSecrets }}
    imagePullSecrets:
      {{- range .Values.global.imagePullSecrets }}
      - name: {{ . }}
        {{- end }}
        {{- end }}
    metadata:
      name: istio-reader-service-account
      namespace: {{ .Values.global.istioNamespace }}
      labels:
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon May 31 07:10:20 GMT 2021
    - 489 bytes
    - Viewed (0)
  7. src/main/config/es/fess_config_path_mapping.json

                "type" : "long"
              },
              "userAgent" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
            "creation_date" : "1509021055516",
            "number_of_shards" : "5",
            "number_of_replicas" : "1",
            "uuid" : "Vn_Ry5JPRSet5M3Cg2D17w",
            "version" : {
              "created" : "6000051"
            },
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 1.1K bytes
    - Viewed (0)
  8. src/main/config/es/fess_config_related_content.json

                "type" : "long"
              },
              "virtualHost" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
            "creation_date" : "1509021055837",
            "number_of_shards" : "5",
            "number_of_replicas" : "1",
            "uuid" : "34AXOK0ITy6U7fzGItZJsQ",
            "version" : {
              "created" : "6000051"
            },
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 1K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/testers/CollectionCreationTester.java

    import com.google.common.collect.testing.features.CollectionSize;
    import java.lang.reflect.Method;
    import org.junit.Ignore;
    
    /**
     * A generic JUnit test which tests creation (typically through a constructor or static factory
     * method) of a collection. Can't be invoked directly; please see {@link
     * com.google.common.collect.testing.CollectionTestSuiteBuilder}.
     *
     * @author Chris Povirk
     */
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 21 16:49:06 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  10. src/main/config/es/fess_user_role.json

        "mappings" : {
          "role" : {
            "properties" : {
              "name" : {
                "type" : "keyword"
              }
            }
          }
        },
        "settings" : {
          "index" : {
            "creation_date" : "1509021059090",
            "number_of_shards" : "5",
            "number_of_replicas" : "1",
            "uuid" : "ugUWT7UpRCau5xEMgWOBsw",
            "version" : {
              "created" : "6000051"
            },
    Json
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 517 bytes
    - Viewed (0)
Back to top