Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 326 for rewrite (0.14 sec)

  1. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_maven.adoc

    Simply define task inputs and outputs that correspond to the mojo parameters and convert the execution logic into a task action.
    
    If a plugin depends on the Maven project, then you will have to rewrite it.
    Don't start by considering how the Maven plugin works, but look at what problem it is trying to solve.
    Then try to work out how to solve that problem in Gradle.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  2. src/runtime/panic.go

    	//   gp._defer = d
    	// But without write barriers. The first three are writes to
    	// the stack so they don't need a write barrier, and furthermore
    	// are to uninitialized memory, so they must not use a write barrier.
    	// The fourth write does not require a write barrier because we
    	// explicitly mark all the defer structures, so we don't need to
    	// keep track of pointers to them with a write barrier.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

          (TFL_Relu6Op $x),
          [(IsConstantValueOf<6> $y)]>;
    
    // For both relu1 and relu_0_to_1, the min/max operators commute,
    // so there are two possible orderings we need to rewrite.
    // Concretely, `m < n -> max(m, min(n, x)) = min(m, max(m, x))`.
    // Proof:
    // case (x <= m)
    //   max(m, min(n, x)) = max(m, m) = m and
    //   min(n, max(m, x)) = min(n, m) = m
    // case (m < x < n)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. src/encoding/xml/xml.go

    				esc = escFFFD
    				break
    			}
    			continue
    		}
    		if _, err := w.Write(s[last : i-width]); err != nil {
    			return err
    		}
    		if _, err := w.Write(esc); err != nil {
    			return err
    		}
    		last = i
    	}
    	_, err := w.Write(s[last:])
    	return err
    }
    
    // EscapeString writes to p the properly escaped XML equivalent
    // of the plain text data s.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 47.3K bytes
    - Viewed (0)
  5. src/syscall/syscall_windows.go

    		if *done > 0 {
    			race.WriteRange(unsafe.Pointer(&p[0]), int(*done))
    		}
    		race.Acquire(unsafe.Pointer(&ioSync))
    	}
    	if msan.Enabled && *done > 0 {
    		msan.Write(unsafe.Pointer(&p[0]), uintptr(*done))
    	}
    	if asan.Enabled && *done > 0 {
    		asan.Write(unsafe.Pointer(&p[0]), uintptr(*done))
    	}
    	return err
    }
    
    func WriteFile(fd Handle, p []byte, done *uint32, overlapped *Overlapped) error {
    	if race.Enabled {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  6. src/cmd/dist/build.go

    			Broken:       broken[p],
    		})
    	}
    	out, err := json.MarshalIndent(results, "", "\t")
    	if err != nil {
    		fatalf("json marshal error: %v", err)
    	}
    	if _, err := os.Stdout.Write(out); err != nil {
    		fatalf("write failed: %v", err)
    	}
    }
    
    func setNoOpt() {
    	for _, gcflag := range strings.Split(gogcflags, " ") {
    		if gcflag == "-N" || gcflag == "-l" {
    			noOpt = true
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/ppc64/asm9.go

    						invertible = true
    					} else if bo&0x04 == 0x04 {
    						// A branch based on CR bit. Invert the BI comparison bit.
    						bo ^= 0x8
    						invertible = true
    					}
    
    					if invertible {
    						// Rewrite
    						//     BC bo,...,far_away_target
    						//     NEXT_INSN
    						// to:
    						//     BC invert(bo),next_insn
    						//     JMP far_away_target
    						//   next_insn:
    						//     NEXT_INSN
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  8. operator/pkg/apis/istio/v1alpha1/values_types.proto

      string logLevel = 18;
    
      // Path to the file to which the proxy will write outlier detection logs.
      //
      // Example: "/dev/stdout"
      // This would write the logs to standard output.
      string outlierLogPath = 42;
    
      // Enables privileged securityContext for the istio-proxy container.
      //
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

      LogicalResult matchAndRewrite(ConcreteOpType op,
                                    PatternRewriter& rewriter) const override {
        if (EqualsZero(op.getBias())) {
          auto none_value = rewriter.create<TFL::NoValueOp>(
              rewriter.getUnknownLoc(), rewriter.getNoneType(),
              rewriter.getUnitAttr());
          op.getBiasMutable().assign(none_value);
          return success();
        }
    
        return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "MOVDstore", argLength: 3, reg: gpstore, aux: "SymOff", asm: "MOVD", typ: "Mem", faultOnNilArg0: true, symEffect: "Write"},   // store 8 bytes of arg1 to arg0 + auxInt + aux.  arg2=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
Back to top