Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,281 for paid (0.12 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PasswordBasedExtractor.java

                        }
                        configPasswordMap.put(value, list);
                    }
                    for (final Pair<Pattern, String> pair : list) {
                        if (pair.getFirst().matcher(url).matches()) {
                            return pair.getSecond();
                        }
                    }
                }
            }
    
            return params != null ? params.get(ExtractData.PDF_PASSWORD) : null;
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/wrapper-workflow.graffle

    HelveticaNeue;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\qc\partightenfactor0 \f0\fs28 \cf0 3. Use \ distribution}WrapNOBounds{{181.375, 96.471849999999989}, {91, 60}}ClassShapedGraphicFi-BoldSize14ID2146Styl{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf100 {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\qc\partightenfactor0 \f0\fs28 \cf0 2. Store and \ unpack \ distri...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/copy-with-deep-filter-example.graffle

    {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\partightenfactor0 \f0\fs32 \cf0 scatterPlot.pdf}WrapNOAllowLabelDrop{414, 81}{414, 97.55078125}{430.15625, 97.55078125}StylefillDrawsNOshad{{393.15625, 51}, {63, 30}}ClassShapedGraphicFi{\rtf1\ansi\ansicpg1252\cocoartf1561\cocoasubrtf200 {\fonttbl\f0\fnil\fcharset0 HelveticaNeue;} {\colortbl;\red255\green255\blue255;} {\*\expandedcolortbl;;} \deftab720 \pard\pardeftab720\partightenfactor0 \f0\fs32 \cf0 metrics}WrapNOAllowLabelDrop{377,...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  4. src/internal/types/testdata/fixedbugs/issue50276.go

    // license that can be found in the LICENSE file.
    
    package p
    
    // simplified test case
    
    type transform[T any] struct{}
    type pair[S any] struct {}
    
    var _ transform[step]
    
    type box transform[step]
    type step = pair[box]
    
    // test case from issue
    
    type Transform[T any] struct{ hold T }
    type Pair[S, T any] struct {
    	First  S
    	Second T
    }
    
    var first Transform[Step]
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 880 bytes
    - Viewed (0)
  5. staging/src/k8s.io/client-go/applyconfigurations/core/v1/photonpersistentdiskvolumesource.go

    // with apply.
    type PhotonPersistentDiskVolumeSourceApplyConfiguration struct {
    	PdID   *string `json:"pdID,omitempty"`
    	FSType *string `json:"fsType,omitempty"`
    }
    
    // PhotonPersistentDiskVolumeSourceApplyConfiguration constructs an declarative configuration of the PhotonPersistentDiskVolumeSource type for use with
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/java/fixtures/kotlin/lib/src/testFixtures/java/com/acme/Simpsons.java

                if (capitalized.equals(person.getFirstName())) {
                    return person;
                }
            }
            return null;
        }
    
        public static Person of(Pair<String, String> pair) {
            return new Person(pair.getLeft(), pair.getRight());
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/testFixtures/kotlin/org/gradle/kotlin/dsl/fixtures/zipUtils.kt

        classes.asSequence().map { classEntryFor(it) }
    
    
    fun classEntriesFor(vararg classes: Class<*>): Sequence<Pair<String, ByteArray>> =
        classes.asSequence().map { classEntryFor(it) }
    
    
    fun classEntryFor(clazz: KClass<*>): Pair<String, ByteArray> =
        classEntryFor(clazz.java)
    
    
    fun classEntryFor(clazz: Class<*>): Pair<String, ByteArray> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 648 bytes
    - Viewed (0)
  8. src/internal/diff/diff.go

    // license that can be found in the LICENSE file.
    
    package diff
    
    import (
    	"bytes"
    	"fmt"
    	"sort"
    	"strings"
    )
    
    // A pair is a pair of values tracked for both the x and y side of a diff.
    // It is typically a pair of line indexes.
    type pair struct{ x, y int }
    
    // Diff returns an anchored diff of the two texts old and new
    // in the “unified diff” format. If old and new are identical,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 14:13:04 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/PairTest.groovy

    import spock.lang.Specification
    
    import static Pair.unpackLeft
    import static Pair.unpackRight
    
    class PairTest extends Specification {
    
      def "can create and transform pair"() {
        given:
        def t = Pair.of(1, "a")
    
        expect:
        t.nestLeft(2).left == Pair.of(2, 1)
        t.nestLeft(2).right == "a"
        t.nestRight(2).left == 1
        t.nestRight(2).right == Pair.of(2, "a")
    
        t.pushLeft(2).left == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. src/internal/syscall/unix/tcsetpgrp_bsd.go

    )
    
    //go:linkname ioctlPtr syscall.ioctlPtr
    func ioctlPtr(fd int, req uint, arg unsafe.Pointer) (err error)
    
    // Note that pgid should really be pid_t, however _C_int (aka int32) is
    // generally equivalent.
    
    func Tcsetpgrp(fd int, pgid int32) (err error) {
    	return ioctlPtr(fd, syscall.TIOCSPGRP, unsafe.Pointer(&pgid))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 588 bytes
    - Viewed (0)
Back to top