Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 191 for noOp (0.07 sec)

  1. cmd/storage-datatypes_gen.go

    			}
    		case "m":
    			z.Metrics, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "Metrics")
    				return
    			}
    		case "np":
    			z.NoOp, err = dc.ReadBool()
    			if err != nil {
    				err = msgp.WrapError(err, "NoOp")
    				return
    			}
    		default:
    			err = dc.Skip()
    			if err != nil {
    				err = msgp.WrapError(err)
    				return
    			}
    		}
    	}
    	return
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 130.6K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/codehost/codehost.go

    	c.Dir = dir
    	c.Stdin = stdin
    	c.Stderr = &stderr
    	c.Stdout = &stdout
    	// For Git commands, manually supply GIT_DIR so Git works with safe.bareRepository=explicit set. Noop for other commands.
    	c.Env = append(c.Environ(), "GIT_DIR="+dir)
    	err := c.Run()
    	if err != nil {
    		err = &RunError{Cmd: strings.Join(cmd, " ") + " in " + dir, Stderr: stderr.Bytes(), Err: err}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. src/os/file_unix.go

    package os
    
    import (
    	"internal/poll"
    	"internal/syscall/unix"
    	"io/fs"
    	"runtime"
    	"sync/atomic"
    	"syscall"
    	_ "unsafe" // for go:linkname
    )
    
    const _UTIME_OMIT = unix.UTIME_OMIT
    
    // fixLongPath is a noop on non-Windows platforms.
    func fixLongPath(path string) string {
    	return path
    }
    
    func rename(oldname, newname string) error {
    	fi, err := Lstat(newname)
    	if err == nil && fi.IsDir() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. src/os/file_plan9.go

    package os
    
    import (
    	"internal/bytealg"
    	"internal/poll"
    	"internal/stringslite"
    	"io"
    	"runtime"
    	"sync"
    	"sync/atomic"
    	"syscall"
    	"time"
    )
    
    // fixLongPath is a noop on non-Windows platforms.
    func fixLongPath(path string) string {
    	return path
    }
    
    // file is the real representation of *File.
    // The extra level of indirection ensures that no clients of os
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

          scope.WithOpName("weights_0_update"), weights_0, delta);
      ops::AssignAddVariableOp weights_1_update_op(
          scope.WithOpName("weights_1_update"), weights_1, delta);
    
      ops::NoOp group_deps(scope.WithOpName("group_deps"));
    
      ops::NoOp some_ctrl_input(scope.WithOpName("some_ctrl_input"));
    
      Output matmul_input =
          ops::Placeholder(scope.WithOpName("matmul_input"), DT_FLOAT);
      Output matmul_0 =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        // subgraph. We store strings here so that we can tolerate nodes being
        // removed from the graph.
        absl::flat_hash_set<string> control_output_nodes_;
    
        // NoOp node in the output graph that is sequenced after the call node.
        Node* sequencer_ = nullptr;
      };
    
      // Returns the key attribute associated with a node in attr. Sets either
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    	Purge SRBucketDeleteOp = "Purge"
    	// NoOp no action needed
    	NoOp SRBucketDeleteOp = "NoOp"
    )
    
    // Empty returns true if this Op is not set
    func (s SRBucketDeleteOp) Empty() bool {
    	return string(s) == "" || string(s) == string(NoOp)
    }
    
    func getSRBucketDeleteOp(isSiteReplicated bool) SRBucketDeleteOp {
    	if !isSiteReplicated {
    		return NoOp
    	}
    	return MarkDelete
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

            public void visitDependencies(TaskDependencyResolveContext context) {
                if (parameterObject != null) {
                    parameterPropertyWalker.visitProperties(parameterObject, TypeValidationContext.NOOP, new PropertyVisitor() {
                        @Override
                        public void visitInputFileProperty(
                            String propertyName,
                            boolean optional,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  9. cmd/format-erasure.go

    	format = &formatErasureV3{}
    	if err = json.Unmarshal(data, format); err != nil {
    		return nil, err
    	}
    
    	if heal {
    		info, err := disk.DiskInfo(context.Background(), DiskInfoOptions{NoOp: heal})
    		if err != nil {
    			return nil, err
    		}
    		format.Info = info
    	}
    
    	// Success.
    	return format, nil
    }
    
    // Valid formatErasure basic versions.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    								},
    							},
    							"otherField": map[string]interface{}{
    								"type": "string",
    							},
    						},
    					}},
    				applyPatchOperation{
    					"An invalid patch with no changes is a noop",
    					myCRDV1Beta1, myCRDInstanceName, map[string]interface{}{
    						"enumField": "okValueNowBadValueLater",
    					}},
    				applyPatchOperation{
    					"Add a new field, and include old value in our patch",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
Back to top