Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 110 for conf (0.04 sec)

  1. pom.xml

    							<dst>${packaging.fess.systemd.sysctl.dir}/fess.conf</dst>
    						</data>
    						<!-- Adds systemd/tmpfiles.d configuration file -->
    						<data>
    							<type>file</type>
    							<src>${project.build.directory}/generated-packaging/deb/systemd/fess.conf</src>
    							<dst>${packaging.fess.tmpfilesd.dir}/fess.conf</dst>
    						</data>
    						<!-- Add lintian files -->
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/object_test.go

    	testenv.MustHaveGoBuild(t)
    
    	for i, test := range testObjects {
    		t.Run(fmt.Sprint(i), func(t *testing.T) {
    			src := "package p; " + test.src
    			conf := Config{Error: func(error) {}, Importer: defaultImporter(), EnableAlias: test.alias}
    			pkg, err := typecheck(src, &conf, nil)
    			if err != nil {
    				t.Fatalf("%s: %s", src, err)
    			}
    
    			names := strings.Split(test.obj, ".")
    			if len(names) != 1 && len(names) != 2 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types2/stdlib_test.go

    		if testing.Verbose() {
    			fmt.Println("\t", filename)
    		}
    		file, err := syntax.ParseFile(filename, nil, nil, 0)
    		if err == nil {
    			conf := Config{
    				GoVersion: goVersion,
    				Importer:  stdLibImporter,
    			}
    			_, err = conf.Check(filename, []*syntax.File{file}, nil)
    		}
    
    		if expectErrors {
    			if err == nil {
    				t.Errorf("expected errors but found none in %s", filename)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. src/cmd/cgo/godefs.go

    	for name, id := range goIdent {
    		if id.Name == name && strings.Contains(name, "_Ctype_union") {
    			if def := typedef[name]; def != nil {
    				id.Name = gofmt(def)
    			}
    		}
    	}
    
    	conf.Fprint(&buf, fset, f.AST)
    
    	return buf.String()
    }
    
    var gofmtBuf strings.Builder
    
    // gofmt returns the gofmt-formatted string for an AST node.
    func gofmt(n interface{}) string {
    	gofmtBuf.Reset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

                .create().generate()
            projectLayoutSetupRegistry.templateOperationFactory.newTemplateOperation()
                .withTemplate(templateFolder.template("build.sample.conf"))
                .withTarget(settings.target.file("../tests/build.sample.conf").asFile)
                .create().generate()
        }
    
        private
        fun tasksExecuted(descriptor: CompositeProjectInitDescriptor): Int {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/version.go

    // module version (Config.GoVersion) is used. If that version is invalid,
    // allowVersion returns true.
    func (check *Checker) allowVersion(at poser, v goVersion) bool {
    	fileVersion := check.conf.GoVersion
    	if pos := at.Pos(); pos.IsKnown() {
    		fileVersion = check.versions[pos.FileBase()]
    	}
    
    	// We need asGoVersion (which calls version.Lang) below
    	// because fileVersion may be the (unaltered) Config.GoVersion
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/api.go

    	// since it affects the behavior of Universe.Lookup("any").
    	//
    	// This flag will eventually be removed (with Go 1.24 at the earliest).
    	EnableAlias bool
    }
    
    func srcimporter_setUsesCgo(conf *Config) {
    	conf.go115UsesCgo = true
    }
    
    // Info holds result type information for a type-checked package.
    // Only the information for which a map is provided is collected.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  8. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/PluginsMetadataGenerator.java

                            }
                        }
                    } catch (Exception e) {
                        // here we can have: IO. ZIP or Plexus Conf Ex: but we should not interfere with user intent
                    }
                }
            }
            return null;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/util/ResourceUtil.java

            }
            final String confPath = System.getProperty(Constants.FESS_CONF_PATH);
            if (StringUtil.isNotBlank(confPath)) {
                return Paths.get(confPath, names);
            }
            return getPath("WEB-INF/", "conf", names);
        }
    
        public static Path getConfOrClassesPath(final String... names) {
            final Path confPath = getConfPath(names);
            if (Files.exists(confPath)) {
                return confPath;
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/decl.go

    }
    
    // objDecl type-checks the declaration of obj in its respective (file) environment.
    // For the meaning of def, see Checker.definedType, in typexpr.go.
    func (check *Checker) objDecl(obj Object, def *TypeName) {
    	if check.conf.Trace && obj.Type() == nil {
    		if check.indent == 0 {
    			fmt.Println() // empty line between top-level objects for readability
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
Back to top