Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 38 for xyz (0.15 sec)

  1. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

            // Test dependencies - minify: remove unused transitive dependencies
            withLibraryDependencies<DependencyRemovalByNameRule>(
                "xyz.rogfam:littleproxy",
                setOf("barchart-udt-bundle", "guava", "commons-cli")
            )
    
            // TODO: Gradle profiler should use the bundled tooling API.
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Aug 24 23:27:45 GMT 2022
    - 9.1K bytes
    - Viewed (0)
  2. cmd/object-api-multipart_test.go

    		{bucketName: "unused-bucket", objName: "def", uploadID: "xyz", PartID: 1, expectedError: fmt.Errorf("%s", "Invalid upload id xyz")},
    		// Test Case - 8.
    		// Existing bucket, object name different from which NewMultipartUpload is constructed from.
    		// Expecting "Invalid upload id".
    		{bucketName: bucket, objName: "def", uploadID: "xyz", PartID: 1, expectedError: fmt.Errorf("%s", "Invalid upload id xyz")},
    		// Test Case - 9.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 77.1K bytes
    - Viewed (0)
  3. src/test/java/jcifs/tests/ConcurrencyTest.java

                            if ( e.getCause() instanceof TransportException && e.getCause().getCause() instanceof InterruptedException ) {
    
                                Smb2CreateRequest create3 = new Smb2CreateRequest(sess.getConfig(), "\\xyz");
                                create3.setOverrideTimeout(1000);
                                create3.setCreateDisposition(Smb2CreateRequest.FILE_OPEN_IF);
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Nov 14 17:40:50 GMT 2021
    - 17.6K bytes
    - Viewed (0)
  4. common/config/.golangci.yml

              - pkg: google.golang.org/protobuf/encoding/protojson
                desc: "don't use the protojson package directly; use util/protomarshal instead"
              - pkg: gomodules.xyz/jsonpatch/v3
                desc: "don't use v3; v2 is orders of magnitude higher performance"
              - pkg: k8s.io/apimachinery/pkg/util/sets
                desc: "use istio.io/istio/pkg/util/sets"
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Apr 22 19:22:39 GMT 2024
    - 11K bytes
    - Viewed (0)
  5. docs/en/data/external_links.yml

        title: "Building a RESTful API with FastAPI: Secure Signup and Login Functionality Included"
      - author: Keshav Malik
        author_link: https://theinfosecguy.xyz/
        link: https://blog.theinfosecguy.xyz/building-a-crud-api-with-fastapi-and-supabase-a-step-by-step-guide
        title: Building a CRUD API with FastAPI and Supabase
      - author: Adejumo Ridwan Suleiman
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Mar 21 20:57:27 GMT 2024
    - 21.3K bytes
    - Viewed (2)
  6. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val jtar = "org.kamranzafar:jtar"
        val kotlinCoroutines = "org.jetbrains.kotlinx:kotlinx-coroutines-core"
        val kotlinCoroutinesDebug = "org.jetbrains.kotlinx:kotlinx-coroutines-debug"
        val littleproxy = "xyz.rogfam:littleproxy"
        val mina = "org.apache.mina:mina-core"
        val mockitoCore = "org.mockito:mockito-core"
        val mockitoKotlin = "com.nhaarman:mockito-kotlin"
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  7. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    *.platformsh.site *.quipelements.com *.r.appspot.com *.rss.my.id *.s5y.io *.sapporo.jp *.sch.uk *.sendai.jp *.sensiosite.cloud *.spectrum.myjino.ru *.statics.cloud *.stg-builder.code.com *.stg.dev *.stgstage.dev *.stolos.io *.svc.firenet.ch *.sys.qcx.io *.telebit.xyz *.transurl.be *.transurl.eu *.transurl.nl *.triton.zone *.tst.site *.uberspace.de *.user.fm *.user.localcert.dev *.usercontent.goog *.vps.myjino.ru *.vultrobjects.com *.webhare.dev *.webpaas.ovh.net *.yokohama.jp 0.bg 001www.com 0e.vc 1.azurestaticapps.net...
    Others
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 40.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/crawler/transformer/FessXpathTransformerTest.java

            assertEquals("abc 123 ", fessXpathTransformer.removeCommentTag("abc<!-- foo1 -->123<!-- foo2 -->"));
            assertEquals("abc 123 xyz", fessXpathTransformer.removeCommentTag("abc<!-- foo1 -->123<!-- foo2 -->xyz"));
            assertEquals("abc ", fessXpathTransformer.removeCommentTag("abc<!---->"));
            assertEquals("abc -->", fessXpathTransformer.removeCommentTag("abc<!-- foo-->-->"));
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 38.6K bytes
    - Viewed (0)
  9. src/bytes/example_test.go

    }
    
    func ExampleSplit() {
    	fmt.Printf("%q\n", bytes.Split([]byte("a,b,c"), []byte(",")))
    	fmt.Printf("%q\n", bytes.Split([]byte("a man a plan a canal panama"), []byte("a ")))
    	fmt.Printf("%q\n", bytes.Split([]byte(" xyz "), []byte("")))
    	fmt.Printf("%q\n", bytes.Split([]byte(""), []byte("Bernardo O'Higgins")))
    	// Output:
    	// ["a" "b" "c"]
    	// ["" "man " "plan " "canal panama"]
    	// [" " "x" "y" "z" " "]
    	// [""]
    }
    
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Mon Mar 04 15:54:40 GMT 2024
    - 15K bytes
    - Viewed (1)
  10. common-protos/k8s.io/api/storage/v1beta1/generated.proto

      // typical for storage backends that provide volumes as filesystems on block
      // devices or as independent shared volumes.
      // Kubernetes will call NodeStage / NodePublish with "-o context=xyz" mount
      // option when mounting a ReadWriteOncePod volume used in Pod that has
      // explicitly set SELinux context. In the future, it may be expanded to other
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 24.9K bytes
    - Viewed (0)
Back to top