Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 411 for dofiles (0.3 sec)

  1. src/main/java/org/codelibs/fess/filter/WebApiFilter.java

        public void init(final FilterConfig filterConfig) throws ServletException {
            // nothing
        }
    
        @Override
        public void destroy() {
            // nothing
        }
    
        @Override
        public void doFilter(final ServletRequest request, final ServletResponse response, final FilterChain chain)
                throws IOException, ServletException {
            final WebApiManagerFactory webApiManagerFactory = ComponentUtil.getWebApiManagerFactory();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/certs/renewal/manager.go

    	// CAName defines the name for the CA on which this certificate depends
    	CAName string
    
    	// CABaseName defines the base name for the CA that should be used for certificate renewal
    	CABaseName string
    
    	// readwriter defines a CertificateReadWriter to be used for certificate renewal
    	readwriter certificateReadWriter
    
    	// certConfigMutators holds the mutator functions that can be applied to the input cert config object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/ClassPathEncodingExtensions.kt

        }
    }
    
    
    internal
    fun Encoder.writeDefaultClassPath(classPath: ClassPath) {
        writeCollection(classPath.asFiles) {
            writeFile(it)
        }
    }
    
    
    internal
    fun Encoder.writeTransformedClassPath(classPath: TransformedClassPath) {
        writeCollection(classPath.asFiles.zip(classPath.asTransformedFiles)) {
            writeFile(it.first)
            writeFile(it.second)
        }
    }
    
    
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/test/groovy/org/gradle/process/internal/worker/child/WorkerProcessClassPathProviderTest.groovy

            1 * cacheBuilder.open() >> { initializer.accept(cache); return cache }
            _ * cache.getBaseDir() >> cacheDir
            1 * cache.close()
            0 * cache._
            classpath.asFiles == [jarFile]
            jarFile.file
        }
    
        def reusesTheCachedClasspath() {
            def cacheDir = tmpDir.testDirectory
            def jarFile = cacheDir.file('gradle-worker.jar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:54 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelSourceFolderClasspathAttributesCrossVersionSpec.groovy

            then:
            project.sourceDirectories.find {it.path == 'src/main/java' }.classpathAttributes.isEmpty()
        }
    
        @TargetGradleVersion(">=3.0 <4.4")
        def "Source folder defines one classpath attribute"() {
            settingsFile << 'rootProject.name = "root"'
            buildFile <<
                """apply plugin: 'java'
               apply plugin: 'eclipse'
               eclipse {
                   classpath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. doc/next/6-stdlib/99-minor/debug/elf/66836.md

    Now defines the symbol type constants [STT_RELC], [STT_SRELC], and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 84 bytes
    - Viewed (0)
  7. cmd/import-boss/main_test.go

    		}
    	}
    }
    
    func TestPackageDir(t *testing.T) {
    	cases := []struct {
    		input  *packages.Package
    		expect string
    	}{{
    		input: &packages.Package{
    			PkgPath:      "example.com/foo/bar/qux",
    			GoFiles:      []string{"/src/prj/file.go"},
    			IgnoredFiles: []string{"/otherdir/file.go"},
    		},
    		expect: filepath.Clean("/src/prj"),
    	}, {
    		input: &packages.Package{
    			PkgPath:      "example.com/foo/bar/qux",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 12:36:49 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/quantization_options.proto

      // NEXT ID: 4
      enum TensorType {
        TENSORTYPE_UNSPECIFIED = 0;
        TENSORTYPE_INT_4 = 1;
        TENSORTYPE_INT_8 = 2;
        TENSORTYPE_INT_32 = 3;
      }
    
      // Defines target component.
      QuantizationComponent quantization_component = 1;
    
      // Defines the target tensor type.
      TensorType tensor_type = 2;
    }
    
    // Unit-wise (op type and node name at this moment) quantization spec. It
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 19 06:31:19 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/policy/v1beta1/generated.proto

    }
    
    // AllowedFlexVolume represents a single Flexvolume that is allowed to be used.
    message AllowedFlexVolume {
      // driver is the name of the Flexvolume driver.
      optional string driver = 1;
    }
    
    // AllowedHostPath defines the host volume conditions that will be enabled by a policy
    // for pods to use. It requires the path prefix to be defined.
    message AllowedHostPath {
      // pathPrefix is the path prefix that the host volume must match.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/play-example/conf/routes

    # Routes
    # This file defines all application routes (Higher priority routes first)
    # ~~~~
    
    # Home page
    GET     /                           @controllers.Application.index
    
    # Map static resources from the /public folder to the /assets URL path
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 323 bytes
    - Viewed (0)
Back to top