Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 148 for Scans (0.12 sec)

  1. platforms/documentation/docs/src/main/resources/header.html

                            <li><a href="../userguide/gradle_optimizations.html">9. Incremental Builds + Caching</a></li>
                            <li><a href="../userguide/build_scans.html">10. Build Scans</a></li>
    
                        </ul>
                    </li>
                    <li><a class="nav-dropdown" data-toggle="collapse" aria-expanded="false">Tutorial</a>
                        <ul id="running-tutorial">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/attach_detach_controller.go

    			// volume spec is not needed to detach a volume. If the volume is used by a pod, it
    			// its spec can be: this would happen during in the populateDesiredStateOfWorld which
    			// scans the pods and updates their volumes in the ActualStateOfWorld too.
    			err = adc.actualStateOfWorld.MarkVolumeAsAttached(logger, uniqueName, nil /* VolumeSpec */, nodeName, attachedVolume.DevicePath)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  3. src/debug/dwarf/line.go

    // If pc is not covered by any entry in this line table, SeekPC
    // returns [ErrUnknownPC]. In this case, *entry and the final seek
    // position are unspecified.
    //
    // Note that DWARF line tables only permit sequential, forward scans.
    // Hence, in the worst case, this takes time linear in the size of the
    // line table. If the caller wishes to do repeated fast PC lookups, it
    // should build an appropriate index of the line table.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  4. src/image/jpeg/reader.go

    	adobeTransform      uint8
    	eobRun              uint16 // End-of-Band run, specified in section G.1.2.2.
    
    	comp       [maxComponents]component
    	progCoeffs [maxComponents][]block // Saved state between progressive-mode scans.
    	huff       [maxTc + 1][maxTh + 1]huffman
    	quant      [maxTq + 1]block // Quantization tables, in zig-zag order.
    	tmp        [2 * blockSize]byte
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  5. src/go/scanner/scanner.go

    	if s.ch == '=' {
    		s.next()
    		return tok1
    	}
    	if s.ch == ch2 {
    		s.next()
    		if s.ch == '=' {
    			s.next()
    			return tok3
    		}
    		return tok2
    	}
    	return tok0
    }
    
    // Scan scans the next token and returns the token position, the token,
    // and its literal string if applicable. The source end is indicated by
    // [token.EOF].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/parse.go

    	case "PCDATA":
    		p.asmPCData(operands)
    	case "PCALIGN":
    		p.asmPCAlign(operands)
    	case "TEXT":
    		p.asmText(operands)
    	default:
    		return false
    	}
    	return true
    }
    
    // symDefRef scans a line for potential text symbol definitions and
    // references and writes symabis information to w.
    //
    // The symabis format is documented at
    // cmd/compile/internal/ssagen.ReadSymABIs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 14:34:57 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. pkg/volume/iscsi/iscsi_util.go

    	}
    	defer fp.Close()
    	decoder := json.NewDecoder(fp)
    	if err = decoder.Decode(conf); err != nil {
    		return fmt.Errorf("iscsi: decode err: %v", err)
    	}
    	return nil
    }
    
    // scanOneLun scans a single LUN on one SCSI bus
    // Use this to avoid scanning the whole SCSI bus for all of the LUNs, which
    // would result in the kernel on this node discovering LUNs that it shouldn't
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 22 12:53:01 UTC 2022
    - 34.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

     */
    
    CU_EXPORT 
    CU_pSuite CU_get_suite_by_name(const char *szSuiteName, CU_pTestRegistry pRegistry);
    /**<
     *  Retrieves a pointer to the suite having the specified name.
     *  Scans the pRegistry and returns a pointer to the first suite located 
     *  having the specified name.  Neither szSuiteName nor pRegistry may be
     *  NULL (checked by assertion).  Clients should normally use CU_get_suite()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/devicemanager/manager.go

    	}
    	if resp != nil && len(resp.ContainerResponses) > 0 {
    		return sets.New[string](resp.ContainerResponses[0].DeviceIDs...), nil
    	}
    	return sets.New[string](), nil
    }
    
    // sanitizeNodeAllocatable scans through allocatedDevices in the device manager
    // and if necessary, updates allocatableResource in nodeInfo to at least equal to
    // the allocated capacity. This allows pods that have already been scheduled on
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 43K bytes
    - Viewed (0)
  10. src/runtime/stack.go

    		// immediately if we're sweeping.
    		//
    		// If GC is active, we delay the free until the end of
    		// GC to avoid the following type of situation:
    		//
    		// 1) GC starts, scans a SudoG but does not yet mark the SudoG.elem pointer
    		// 2) The stack that pointer points to is copied
    		// 3) The old stack is freed
    		// 4) The containing span is marked free
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
Back to top