Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 128 for getm (0.03 sec)

  1. src/encoding/xml/xml.go

    func (d *Decoder) space() {
    	for {
    		b, ok := d.getc()
    		if !ok {
    			return
    		}
    		switch b {
    		case ' ', '\r', '\n', '\t':
    		default:
    			d.ungetc(b)
    			return
    		}
    	}
    }
    
    // Read a single byte.
    // If there is no byte to read, return ok==false
    // and leave the error in d.err.
    // Maintain line number.
    func (d *Decoder) getc() (b byte, ok bool) {
    	if d.err != nil {
    		return 0, false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/walk/range.go

    		}
    
    		// We use a "pointer" to keep track of where we are in the backing array
    		// of the slice hs. This pointer starts at hs.ptr and gets incremented
    		// by the element size each time through the loop.
    		//
    		// It's tricky, though, as on the last iteration this pointer gets
    		// incremented to point past the end of the backing array. We can't
    		// let the garbage collector see that final out-of-bounds pointer.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:33 UTC 2023
    - 17.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/wasm/asm.go

    	}
    
    	writeSecSize(ctxt, sizeOffset)
    }
    
    // writeElementSec writes the section that initializes the tables declared by the "table" section.
    // The table for CallIndirect gets initialized in a very simple way so that each table index (PC_F value)
    // maps linearly to the function index (numImports + PC_F).
    func writeElementSec(ctxt *ld.Link, numImports, numFns uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/transforms/tpu_space_to_depth_pass.cc

        return IntegerAttr::get(IntegerType::get(context, 64), APInt(64, v));
      });
      auto strides = ArrayAttr::get(context, llvm::to_vector<4>(attrs));
    
      // new result type.
      SmallVector<int64_t, 4> new_shape(new_filter_shape.begin(),
                                        new_filter_shape.end());
      auto new_result_type =
          RankedTensorType::get(new_shape, getElementTypeOrSelf(input));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/HttpBuildCacheServiceIntegrationTest.groovy

        }
    
        def "clean doesn't get cached"() {
            withBuildCache().run "assemble"
            withBuildCache().run "clean"
            withBuildCache().run "assemble"
            when:
            withBuildCache().run "clean"
            then:
            executedAndNotSkipped ":clean"
        }
    
        def "cacheable task with cache disabled doesn't get cached"() {
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top