Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 131 for getm (0.04 sec)

  1. operator/pkg/manifest/shared.go

    }
    
    // ReadYamlProfile gets the overlay yaml file from list of files and return profile value from file overlay and set overlay.
    func ReadYamlProfile(inFilenames []string, setFlags []string, force bool, l clog.Logger) (string, string, error) {
    	profile := name.DefaultProfileName
    	// Get the overlay YAML from the list of files passed in. Also get the profile from the overlay files.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tpu_resource_partitioning.cc

          continue;
    
        const auto inputs = partitioned_input.getInputs();
        const bool packed_input = partitioned_input.getIsPacked();
        int num_cores_per_replica = partitioned_input.getN();
        if (num_cores_per_replica_attr) {
          num_cores_per_replica = num_cores_per_replica_attr.getInt();
        } else if (packed_input) {
          return partitioned_input->emitOpError()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top