Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 818 for Origins (0.11 sec)

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

            final String origin = httpRequest.getHeader("Origin");
            if (StringUtil.isNotBlank(origin)) {
                if (logger.isDebugEnabled()) {
                    logger.debug("HTTP Request: {}", httpRequest.getMethod());
                }
                final CorsHandlerFactory factory = ComponentUtil.getCorsHandlerFactory();
                final CorsHandler handler = factory.get(origin);
                if (handler != null) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationWritingIntegTest.groovy

                <sha512 value="${getChecksum(bar, "sha512", "jar", "classy")}" origin="Generated by Gradle"/>
             </artifact>
             <artifact name="bar-1.0.pom">
                <sha1 value="${getChecksum(bar, "sha1", "pom")}" origin="Generated by Gradle"/>
                <sha512 value="${getChecksum(bar, "sha512", "pom")}" origin="Generated by Gradle"/>
             </artifact>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  3. pkg/config/analysis/diag/messages.go

    			return true
    		case a.Resource != nil && b.Resource == nil:
    			return false
    		case a.Resource != nil && b.Resource != nil && a.Resource.Origin.Comparator() != b.Resource.Origin.Comparator():
    			return a.Resource.Origin.Comparator() < b.Resource.Origin.Comparator()
    		default:
    			return a.String() < b.String()
    		}
    	})
    }
    
    // SortedDedupedCopy returns a different sorted (and deduped) Messages struct.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 02:47:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/contextReceiver.ir.txt

            VALUE_PARAMETER name:p0 index:0 type:<root>.Foo
            EXPRESSION_BODY
              BLOCK type=kotlin.String origin=null
                CALL 'public final fun <get-foo> (): kotlin.String declared in <root>.Foo' type=kotlin.String origin=GET_PROPERTY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 896 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/contextReceiverExplicit.ir.txt

            VALUE_PARAMETER name:p0 index:0 type:<root>.Foo
            EXPRESSION_BODY
              BLOCK type=kotlin.String origin=null
                CALL 'public final fun <get-foo> (): kotlin.String declared in <root>.Foo' type=kotlin.String origin=GET_PROPERTY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 896 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/privateMemberCall.ir.txt

            VALUE_PARAMETER name:p0 index:0 type:<root>.A
            EXPRESSION_BODY
              BLOCK type=kotlin.Int origin=null
                CALL 'private final fun foo (): kotlin.Int declared in <root>.A' type=kotlin.Int origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Aug 30 06:38:44 UTC 2023
    - 861 bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/TaskOriginCrossVersionSpec.groovy

        def "throws UnsupportedMethodException for task origin when target version does not support it"() {
            when:
            runBuild('tasks')
    
            and:
            task(':tasks').originPlugin
    
            then:
            def e = thrown(UnsupportedMethodException)
            e.message.startsWith("Unsupported method: TaskOperationDescriptor.getOriginPlugin()")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git.go

    		return nil, err
    	}
    
    	// Stat may return cached info, so make a copy to modify here.
    	info := new(RevInfo)
    	*info = *statInfo
    	info.Origin = new(Origin)
    	if statInfo.Origin != nil {
    		*info.Origin = *statInfo.Origin
    	}
    	info.Origin.Ref = "HEAD"
    	info.Origin.Hash = refs["HEAD"]
    
    	return info, nil
    }
    
    // findRef finds some ref name for the given hash,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-option/src/main/java/org/gradle/internal/buildoption/EnabledOnlyBooleanBuildOption.java

                if (options.hasOption(config.getLongOption())) {
                    applyTo(settings, Origin.forCommandLine(config.getLongOption()));
                }
            }
        }
    
        public abstract void applyTo(T settings, Origin origin);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 28 21:41:57 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/DefaultClassEncoder.kt

                }
                writeString(scope.name)
                if (scope.origin is ClassLoaderScopeOrigin.Script) {
                    writeBoolean(true)
                    writeString(scope.origin.fileName)
                    writeString(scope.origin.longDisplayName.displayName)
                    writeString(scope.origin.shortDisplayName.displayName)
                } else {
                    writeBoolean(false)
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top