Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 109 for untouched (0.29 sec)

  1. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_save_op.mlir

    // SaveV2 op created for a single VarHandleOp.
    
    module attributes {tf_saved_model.semantics} {
      "tf_saved_model.session_initializer"() {initializers = [@init_func_restore_op]} : () -> ()
    // SessionInitializerOp is untouched.
    // CHECK: "tf_saved_model.session_initializer"()
    // CHECK-SAME: {{.*initializers = \[@init_func_restore_op\].*}}
    
      func.func @init_func_restore_op() -> () attributes {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/pledge_openbsd.go

    	if err != nil {
    		return err
    	}
    
    	return pledge(pptr, exptr)
    }
    
    // PledgePromises implements the pledge syscall.
    //
    // This changes the promises and leaves the execpromises untouched.
    //
    // For more information see pledge(2).
    func PledgePromises(promises string) error {
    	if err := pledgeAvailable(); err != nil {
    		return err
    	}
    
    	pptr, err := BytePtrFromString(promises)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. tests/non_std_test.go

    	DB.Save(&animal).Update("From", "a nice place") // The name field should be untouched
    	DB.First(&animal, animal.Counter)
    	if animal.Name != "galeone" {
    		t.Errorf("Name fields shouldn't be changed if untouched, but got %v", animal.Name)
    	}
    
    	// When changing a field with a default value, the change must occur
    	animal.Name = "amazing horse"
    	DB.Save(&animal)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. proguard/collect.pro

    #
    # We use -keepclassmembernames because we want for ImmutableMultimap and its
    # fields to be stripped if it's unused: -keepclassmembernames says that, *if*
    # you're keeping the fields, you need to leave their names untouched. (Anyone
    # who is using ImmutableMultimap will certainly be using its fields. So we
    # don't need to worry that an ImmutableMultimap user will have the fields
    # optimized away.)
    #
    # This configuration is untested....
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 09 00:29:01 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. .gitattributes

    *.css           text diff=css
    *.htm           text diff=html
    *.html          text diff=html
    *.java          text diff=java
    *.sh            text eol=lf
    
    
    # These files are binary and should be left untouched
    # (binary is a macro for -text -diff)
    *.a             binary
    *.lib           binary
    *.icns          binary
    *.png           binary
    *.jpg           binary
    *.jpeg          binary
    *.gif           binary
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 02 12:15:16 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/GitAttributesGenerator.java

                    writer.println("*.bat           text eol=crlf");
                    writer.println();
                    writer.println("# Binary files should be left untouched");
                    writer.println("*.jar           binary");
                    writer.println();
                }
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 12:54:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. test/fixedbugs/issue5373.go

    // license that can be found in the LICENSE file.
    
    // Ensure that zeroing range loops have the requisite side-effects.
    
    package main
    
    import (
    	"fmt"
    	"os"
    )
    
    func check(n int) {
    	// When n == 0, i is untouched by the range loop.
    	// Picking an initial value of -1 for i makes the
    	// "want" calculation below correct in all cases.
    	i := -1
    	s := make([]byte, n)
    	for i = range s {
    		s[i] = 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 1.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/partial-device-name.pbtxt

      attr {
        key: "T"
        value {
          type: DT_INT32
        }
      }
    }
    node {
      name: "Mul"
      op: "Mul"
      input: "Add"
      input: "Add"
      # Empty device name should be kept untouched.
      device: ""
      attr {
        key: "T"
        value {
          type: DT_INT32
        }
      }
    }
    node {
      name: "Sub"
      op: "Sub"
      input: "Add"
      input: "Mul"
      # Device name is not modified if complete
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Feb 26 20:48:36 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/GitAttributesGeneratorTest.groovy

    '''
            builder << '\n'
            builder << '''# These are Windows script files and should use crlf
    *.bat           text eol=crlf
    '''
            builder << '\n'
            builder << '''# Binary files should be left untouched
    *.jar           binary
    '''
            builder << '\n'
    
            return builder.toString()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 12:54:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  10. pilot/cmd/pilot-agent/config/config.go

    //
    // Merging is done by replacement. Any fields present in the overlay will replace those existing fields, while
    // untouched fields will remain untouched. This means lists will be replaced, not appended to, for example.
    func getMeshConfig(fileOverride, annotationOverride, proxyConfigEnv string) (*meshconfig.MeshConfig, error) {
    	mc := mesh.DefaultMeshConfig()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top