Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for excl (0.11 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenPom.groovy

                optional = "true"==dep.optional.text()
            }
            if (dep.exclusions) {
                dep.exclusions.exclusion.each { excl ->
                    MavenDependencyExclusion exclusion = new MavenDependencyExclusion(
                        groupId: excl.groupId.text(),
                        artifactId: excl.artifactId.text(),
                    )
                    exclusions << exclusion
                }
    
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  2. src/os/file_plan9.go

    func openFileNolog(name string, flag int, perm FileMode) (*File, error) {
    	var (
    		fd     int
    		e      error
    		create bool
    		excl   bool
    		trunc  bool
    		append bool
    	)
    
    	if flag&O_CREATE == O_CREATE {
    		flag = flag & ^O_CREATE
    		create = true
    	}
    	if flag&O_EXCL == O_EXCL {
    		excl = true
    	}
    	if flag&O_TRUNC == O_TRUNC {
    		trunc = true
    	}
    	// O_APPEND is emulated on Plan 9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. hack/update-codegen.sh

    #    k8s_tag_files_except foo bat/qux
    function k8s_tag_files_except() {
        for f in "${ALL_K8S_TAG_FILES[@]}"; do
            local excl=""
            for x in "$@"; do
                if [[ "$f" =~ "$x"/.* ]]; then
                    excl="true"
                    break
                fi
            done
            if [[ "${excl}" != true ]]; then
                echo "$f"
            fi
        done
    }
    
    # OpenAPI generation
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    			if haveExclude[x.Mod] {
    				kill[x.Syntax] = true
    				continue
    			}
    			haveExclude[x.Mod] = true
    		}
    		var excl []*Exclude
    		for _, x := range *exclude {
    			if !kill[x.Syntax] {
    				excl = append(excl, x)
    			}
    		}
    		*exclude = excl
    	}
    
    	// Remove duplicate replacements.
    	// Later replacements take priority over earlier ones.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotterStatistics.java

            public final FileVisitResult visitFileFailed(Path file, IOException exc) {
                collector.recordVisitFileFailed();
                return doVisitFileFailed(file, exc);
            }
    
            protected abstract FileVisitResult doVisitFileFailed(Path file, IOException exc);
    
            @Override
            public final FileVisitResult postVisitDirectory(Path dir, IOException exc) {
                return doPostVisitDirectory(dir, exc);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_config.properties

    application/vnd.ms-excel=excel\n\
    application/vnd.ms-excel.sheet.2=excel\n\
    application/vnd.ms-excel.sheet.3=excel\n\
    application/vnd.ms-excel.sheet.4=excel\n\
    application/vnd.ms-excel.workspace.3=excel\n\
    application/vnd.ms-excel.workspace.4=excel\n\
    application/vnd.openxmlformats-officedocument.spreadsheetml.sheet=excel\n\
    application/vnd.ms-powerpoint=powerpoint\n\
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  7. maven-compat/src/test/java/org/apache/maven/project/artifact/MavenMetadataSourceTest.java

            dep1.setArtifactId( "test-artifact" );
            dep1.setVersion( "1" );
            dep1.setType( "jar" );
    
            Exclusion exc = new Exclusion();
            exc.setGroupId( "test" );
            exc.setArtifactId( "test-artifact3" );
    
            dep1.addExclusion( exc );
    
            Dependency dep2 = new Dependency();
            dep2.setGroupId( "test" );
            dep2.setArtifactId( "test-artifact2" );
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/mutator/ClearArtifactTransformCacheWithoutInstrumentedJarsMutator.groovy

                }
    
                @Override
                FileVisitResult visitFileFailed(Path file, IOException exc) throws IOException {
                    throw exc
                }
    
                @Override
                FileVisitResult postVisitDirectory(Path dir, IOException exc) throws IOException {
                    if (PathUtils.isEmpty(dir)) {
                        Files.delete(dir)
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 12:30:06 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/GradleModuleMetadata.groovy

                    this
                }
    
                DependencyView hasExclude(String group, String module = '*') {
                    String exc = "${group}:${module}"
                    assert find()?.excludes?.contains(exc)
                    checkedExcludes << exc
                    this
                }
    
                DependencyView noMoreExcludes() {
                    def uncheckedExcludes = find().excludes - checkedExcludes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/AbstractMavenModule.groovy

                                            exclusions {
                                                for (exc in dep.exclusions) {
                                                    exclusion {
                                                        groupId(exc.group ?: '*')
                                                        artifactId(exc.module ?: '*')
                                                    }
                                                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top