Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 54 for blockAsm (0.24 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Using empty configuration blocks for file or directory permissions still sets them explicitly, just to fixed default values.
    Everything inside one of these configuration blocks is relative to the default values.
    Default permissions differ for files and directories:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/S390X.rules

    // Fold sign and zero extensions into loads.
    //
    // Note: The combined instruction must end up in the same block
    // as the original load. If not, we end up making a value with
    // memory type live in two different blocks, which can lead to
    // multiple memory values alive simultaneously.
    //
    // Make sure we don't combine these ops if the load has another use.
    // This prevents a single load from being split into multiple loads
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
  3. pkg/controller/disruption/disruption_test.go

    	}
    	if condition == nil {
    		t.Fatalf("Expected ExistingTestCondition condition, but didn't find it")
    	}
    }
    
    // waitForCacheCount blocks until the given cache store has the desired number
    // of items in it. This will return an error if the condition is not met after a
    // 10 second timeout.
    func waitForCacheCount(store cache.Store, n int) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. cmd/peer-rest-server.go

    				return false
    			}
    		}
    		return rulesMap.MatchSimple(ev.EventName, ev.S3.Object.Key)
    	})
    	if err != nil {
    		return grid.NewRemoteErr(err)
    	}
    
    	// Process until remote disconnects.
    	// Blocks on upstream (out) congestion.
    	// We have however a dynamic downstream buffer (ch).
    	buf := bytes.NewBuffer(grid.GetByteBuffer())
    	enc := json.NewEncoder(buf)
    	tmpEvt := struct{ Records []event.Event }{[]event.Event{{}}}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    	stat.Mtim.Nsec = 0 //zos doesn't return nanoseconds
    	stat.Ctim.Sec = int64(statLE.Ctim)
    	stat.Ctim.Nsec = 0 //zos doesn't return nanoseconds
    	stat.Blksize = int64(statLE.Blksize)
    	stat.Blocks = statLE.Blocks
    }
    
    func svcCall(fnptr unsafe.Pointer, argv *unsafe.Pointer, dsa *uint64)
    func svcLoad(name *byte) unsafe.Pointer
    func svcUnload(name *byte, fnptr unsafe.Pointer) int64
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      // This routine should only be called when control flow operations are still
      // represented with TF IfOp and WhileOp operations. In this case, there should
      // be only one basic blocks in the MLIR representation.
      if (!llvm::hasSingleElement(function)) {
        return function.emitError()
               << "expect the function to have 1 block while it has "
               << function.getBlocks().size();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  7. src/crypto/tls/conn.go

    	// are included in the MAC. Otherwise, an attacker that could
    	// distinguish MAC failures from padding failures could mount an attack
    	// similar to POODLE in SSL 3.0: given a good ciphertext that uses a
    	// full block's worth of padding, replace the final block with another
    	// block. If the MAC check passed but the padding check failed, the
    	// last byte of that block decrypted to the block size.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server_test.go

    	name string
    	// command, if not empty, contains a series of arguments for the
    	// command to run for the reference server.
    	command []string
    	// expectedPeerCerts contains a list of PEM blocks of expected
    	// certificates from the client.
    	expectedPeerCerts []string
    	// config, if not nil, contains a custom Config to use for this test.
    	config *Config
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			defer c.watchCache.waitingUntilFresh.Remove()
    		}
    		err := c.watchCache.waitUntilFreshAndBlock(ctx, requestedWatchRV)
    		defer c.watchCache.RUnlock()
    		return err
    	}
    	return nil
    }
    
    // Wait blocks until the cacher is Ready or Stopped, it returns an error if Stopped.
    func (c *Cacher) Wait(ctx context.Context) error {
    	return c.ready.wait(ctx)
    }
    
    // errWatcher implements watch.Interface to return a single error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/text/cases/tables9.0.0.go

    	switch {
    	case n < 18:
    		return uint16(caseValues[n<<6+uint32(b)])
    	default:
    		n -= 18
    		return uint16(sparse.lookup(n, b))
    	}
    }
    
    // caseValues: 20 blocks, 1280 entries, 2560 bytes
    // The third block is the zero block.
    var caseValues = [1280]uint16{
    	// Block 0x0, offset 0x0
    	0x27: 0x0054,
    	0x2e: 0x0054,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 92.4K bytes
    - Viewed (0)
Back to top