Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for unwrapped (0.32 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute1QualifiedStaticInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromObjectList(), "ProcessGroovyMethods.execute(command)", "", ""],
                // Spread calls
                [fromString(), "ProcessGroovyMethods.execute(*[command])", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "ProcessGroovyMethods.execute(command as String)", "", ""],
            ]
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec1InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromStringArray(), "Runtime.getRuntime().exec(command)", "", ""],
                // Spread calls
                [fromString(), "Runtime.getRuntime().exec(*[command])", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "Runtime.getRuntime().exec(command as String)", "", ""],
                [fromObjectList(), "Runtime.getRuntime().exec(command as String[])", "", ""],
                // Null-safe calls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec2InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Typed nulls
                [fromString(), "Runtime.getRuntime().exec(command, null as String[])", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "Runtime.getRuntime().exec(command as String, null)", "", ""],
                [fromObjectList(), "Runtime.getRuntime().exec(command as String[], null)", "", ""],
                // Null-safe calls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. src/crypto/rand/rand_plan9.go

    	if err != nil {
    		r.mu.Unlock()
    		return 0, err
    	}
    	var (
    		counter uint64
    		block   [aes.BlockSize]byte
    	)
    	inc := func() {
    		counter++
    		if counter == 0 {
    			panic("crypto/rand counter wrapped")
    		}
    		byteorder.LePutUint64(block[:], counter)
    	}
    	blockCipher.Encrypt(r.key[:aes.BlockSize], block[:])
    	inc()
    	blockCipher.Encrypt(r.key[aes.BlockSize:], block[:])
    	inc()
    	r.mu.Unlock()
    
    	n = len(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/extract_tpu_copy_with_dynamic_shape_op.cc

        return block_arg.getOwner()->getParentOp();
    
      return value.getDefiningOp();
    }
    
    // Check if the TPUCopyWithDynamicShapeOp is valid.
    // 1. The op should be wrapped inside a launch op.
    // 2. The wrapped launch op should be placed on CPU.
    LogicalResult CheckOpIsValid(Operation* op) {
      auto launch_op = llvm::dyn_cast<tf_device::LaunchOp>(op->getParentOp());
      if (!launch_op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec3InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                // Typed nulls
                [fromString(), "Runtime.getRuntime().exec(command, null, null as File)", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "Runtime.getRuntime().exec(command as String, null, null)", "", ""],
                [fromObjectList(), "Runtime.getRuntime().exec(command as String[], null, null)", "", ""],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. pilot/pkg/model/envoyfilter.go

    	return true
    }
    
    // Returns the keys of all the wrapped envoyfilters.
    func (efw *EnvoyFilterWrapper) Keys() []string {
    	if efw == nil {
    		return nil
    	}
    	keys := sets.String{}
    	for _, patches := range efw.Patches {
    		for _, patch := range patches {
    			keys.Insert(patch.Key())
    		}
    	}
    	return sets.SortedList(keys)
    }
    
    // Returns the keys of all the wrapped envoyfilters.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. internal/deadlineconn/deadlineconn.go

    	}
    }
    
    func (c *DeadlineConn) setWriteDeadline() {
    	if c.writeDeadline > 0 {
    		c.Conn.SetWriteDeadline(time.Now().UTC().Add(c.writeDeadline))
    	}
    }
    
    // Read - reads data from the connection using wrapped buffered reader.
    func (c *DeadlineConn) Read(b []byte) (n int, err error) {
    	c.setReadDeadline()
    	n, err = c.Conn.Read(b)
    	return n, err
    }
    
    // Write - writes data to the connection.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/Execute3InstanceInstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromString(), "command.execute(null, (File) null)", "", ""],
                [fromString(), "command.execute((String[]) null, (File) null)", "", ""],
                // type-wrapped arguments
                [fromString(), "command.execute((String[]) ['FOOBAR=foobar'], null)", "", "foobar"],
                [fromString(), "command.execute((List) ['FOOBAR=foobar'], null)", "", "foobar"],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/structural.go

    type JSON struct {
    	Object interface{}
    }
    
    // DeepCopy creates a deep copy of the wrapped JSON value.
    func (j JSON) DeepCopy() JSON {
    	return JSON{runtime.DeepCopyJSONValue(j.Object)}
    }
    
    // DeepCopyInto creates a deep copy of the wrapped JSON value and stores it in into.
    func (j JSON) DeepCopyInto(into *JSON) {
    	into.Object = runtime.DeepCopyJSONValue(j.Object)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 6.9K bytes
    - Viewed (0)
Back to top