Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 242 for getg (0.03 sec)

  1. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/impl/DefaultDeleterTest.groovy

                newFiles.each { FileTime.createNewFile(it) }
                return DeletionAction.FAILURE
            }
    
            when:
            deleter.deleteRecursively(targetDir)
    
            then: 'nothing gets deleted'
            targetDir.assertIsDir()
            nonDeletableFiles.each { it.assertIsFile() }
            newFiles.each { it.assertIsFile() }
    
            and: 'it failed fast'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 12:40:48 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

         * to determine for each entry if it is passed to Java tools using '-classpath' or '--module-path'.
         *
         * @since 6.4
         */
        ModularitySpec getModularity();
    
        /**
         * Gets the project wide toolchain requirements that will be used for tasks requiring a tool from the toolchain (e.g. {@link org.gradle.api.tasks.compile.JavaCompile}).
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  3. tests/integration/pilot/tunneling_test.go

    	}
    	if res.Responses[0].Code != "200" {
    		return fmt.Errorf("expected to get 200 status code, got: %s", res.Responses[0].Code)
    	}
    	return nil
    }
    
    func verifyThatRequestWasTunneled(target echo.Instance, expectedSourceIPs []corev1.PodIP, expectedPath string) error {
    	workloads, err := target.Workloads()
    	if err != nil {
    		return fmt.Errorf("failed to get workloads of %s: %s", target.ServiceName(), err)
    	}
    	var logs strings.Builder
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. docs/features/https.md

           * Returns an input stream containing one or more certificate PEM files. This implementation just
           * embeds the PEM files in Java strings; most applications will instead read this from a resource
           * file that gets bundled with the application.
           */
          private fun trustedCertificatesInputStream(): InputStream {
            ... // Full source omitted. See sample.
          }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 24 00:16:30 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/utils/utils.h

                                      .getSExtValue()]);
        }
      }
    
      return mlir::DenseElementsAttr::get(
          RankedTensorType::get(
              {static_cast<int>(new_permutation.size())},
              mlir::IntegerType::get(permutation1.getContext(), 32)),
          llvm::ArrayRef(new_permutation));
    }
    
    // Utility function to map final permutation to initial permutation
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/dcerpc/DcerpcHandle.java

            byte[] out = this.transportContext.getBufferCache().getBuffer();
            try {
                NdrBuffer buf = encodeMessage(msg, out);
                int off = sendFragments(msg, out, buf);
    
                // last fragment gets written (possibly) using transact/call semantics
                int have = doSendReceiveFragment(out, off, msg.length, inB);
    
                if ( have != 0 ) {
                    NdrBuffer hdrBuf = new NdrBuffer(inB, 0);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jun 30 10:11:57 UTC 2019
    - 12.9K bytes
    - Viewed (0)
  7. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

            newParameter.currentDir == new File(System.getProperty("user.dir")).getCanonicalFile()
            !newParameter.dryRun
            assertThat(newParameter, isSerializable())
        }
    
        void "gets all init scripts"() {
            def gradleUserHomeDir = tmpDir.testDirectory.createDir("gradleUserHomeDie")
            def gradleHomeDir = tmpDir.testDirectory.createDir("gradleHomeDir")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  8. pkg/scheduler/apis/config/v1/default_plugins_test.go

    					},
    				},
    				Score: v1.PluginSet{
    					Disabled: []v1.Plugin{
    						{Name: "DefaultPlugin2"},
    					},
    				},
    			},
    		},
    		{
    			name: "multipoint with only disabled gets merged",
    			defaultPlugins: &v1.Plugins{
    				MultiPoint: v1.PluginSet{
    					Enabled: []v1.Plugin{
    						{Name: "DefaultPlugin"},
    					},
    				},
    			},
    			customPlugins: &v1.Plugins{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    		newContent.sniCerts = append(newContent.sniCerts, sniCertKeyContent{certKeyContent: certKeyContent{cert: currCert, key: currKey}, sniNames: sniCert.SNINames()})
    	}
    
    	return newContent, nil
    }
    
    // syncCerts gets newTLSContent, if it has changed from the existing, the content is parsed and stored for usage in
    // GetConfigForClient.
    func (c *DynamicServingCertificateController) syncCerts() error {
    	newContent, err := c.newTLSContent()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    		expectError           func(err error) bool
    		useLocationHost       bool
    	}{
    		{
    			name:         "root path, simple get",
    			method:       "GET",
    			requestPath:  "/",
    			expectedPath: "/",
    		},
    		{
    			name:            "no upgrade header sent",
    			method:          "GET",
    			requestPath:     "/",
    			upgradeRequired: true,
    			expectError: func(err error) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
Back to top