Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for Importer (0.2 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

                    LOGGER.debug("setting default conf mapping from imported configurations file: {}", parser.getDefaultConfMapping());
                    setDefaultConfMapping(parser.getDefaultConfMapping());
                }
                if (parser.getDefaultConf() != null) {
                    LOGGER.debug("setting default conf from imported configurations file: {}", parser.getDefaultConf());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

                                + " is missing.",
                        dependency.getLocation(""));
                return null;
            }
    
            String imported = groupId + ':' + artifactId + ':' + version;
    
            if (importIds.contains(imported)) {
                StringBuilder message =
                        new StringBuilder("The dependencies of type=pom and with scope=import form a cycle: ");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                        .setLocation(dependency.getLocation("")));
                return null;
            }
    
            String imported = groupId + ':' + artifactId + ':' + version;
    
            if (importIds.contains(imported)) {
                StringBuilder message =
                        new StringBuilder("The dependencies of type=pom and with scope=import form a cycle: ");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  4. istioctl/pkg/writer/compare/testdata/configdump.json

                                  "type_url": "type.googleapis.com/stats.PluginConfig",
                                  "value": {
                                    "reporter": "SERVER_GATEWAY"
                                  }
                                }
                              },
                              {
                                "name": "envoy.filters.http.router",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  5. istioctl/pkg/writer/compare/testdata/configdump_diff.json

                                  "type_url": "type.googleapis.com/stats.PluginConfig",
                                  "value": {
                                    "reporter": "SERVER_GATEWAY"
                                  }
                                }
                              },
                              {
                                "name": "envoy.filters.http.router",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    	if err != nil {
    		return nil, nil, nil, err
    	}
    
    	// If imported is true then this package is imported by some
    	// package being tested. Make building the test version of the
    	// package depend on building the non-test version, so that we
    	// only report build errors once. Issue #44624.
    	if imported && ptest != p {
    		buildTest := b.CompileAction(work.ModeBuild, work.ModeBuild, ptest)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/cmd/cgo/out.go

    		defer f.Close()
    		sym, err := f.ImportedSymbols()
    		if err != nil {
    			fatalf("cannot load imported symbols from XCOFF file %s: %v", obj, err)
    		}
    		for _, s := range sym {
    			if s.Name == "runtime_rt0_go" || s.Name == "_rt0_ppc64_aix_lib" {
    				// These symbols are imported by runtime/cgo but
    				// must not be added to _cgo_import.go as there are
    				// Go symbols.
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 16:41:10 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  8. src/cmd/dist/build.go

    	name := filepath.Base(dir)
    
    	// ispkg predicts whether the package should be linked as a binary, based
    	// on the name. There should be no "main" packages in vendor, since
    	// 'go mod vendor' will only copy imported packages there.
    	ispkg := !strings.HasPrefix(pkg, "cmd/") || strings.Contains(pkg, "/internal/") || strings.Contains(pkg, "/vendor/")
    
    	// Start final link command line.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  9. cmd/sts-handlers_test.go

    		// Built-in user should be imported without errors even if LDAP is
    		// enabled.
    		allUsersFile: `{
      "foo": {
        "secretKey": "foobar123",
        "status": "enabled"
      }
    }
    `,
    		// Built-in groups should be imported without errors even if LDAP is
    		// enabled.
    		allGroupsFile: `{
      "mygroup": {
        "version": 1,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  10. cmd/iam.go

    					normKey, origKeys)
    			}
    
    			if len(origKeys[1:]) > 0 {
    				// Log that extra DN mappings will not be imported.
    				iamLogEvent(ctx, "import-ldap-normalize: extraneous DN mappings found for LDAP DN[%s]: %v will not be imported", origKeys[0], origKeys[1:])
    			}
    
    			// Policies mapped to the DN's are the same, so we remove the extra
    			// ones from the map.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top