Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for emits (0.05 sec)

  1. pkg/controller/volume/persistentvolume/pv_controller.go

    	}
    	logger.V(2).Info("Claim entered phase", "PVC", klog.KObj(claim), "phase", phase)
    	return newClaim, nil
    }
    
    // updateClaimStatusWithEvent saves new claim.Status to API server and emits
    // given event on the claim. It saves the status and emits the event only when
    // the status has actually changed from the version saved in API server.
    // Parameters:
    //
    //	claim - claim to update
    //	phase - phase to set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  2. src/cmd/dist/test.go

    				cgoTest("auto-pie", "testnocgo", "auto", "pie")
    			}
    		}
    	}
    }
    
    // runPending runs pending test commands, in parallel, emitting headers as appropriate.
    // When finished, it emits header for nextTest, which is going to run after the
    // pending commands are done (and runPending returns).
    // A test should call runPending if it wants to make sure that it is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    			}
    			d.dwmu.Unlock()
    		}
    	}
    
    	// Emit directory section. This is a series of nul terminated
    	// strings, followed by a single zero byte.
    	lsDwsym := dwSym(lsu.Sym())
    	for k := 1; k < len(dirs); k++ {
    		d.AddString(lsDwsym, dirs[k])
    	}
    	lsu.AddUint8(0) // terminator
    
    	// Emit file section.
    	for k := 0; k < len(files); k++ {
    		d.AddString(lsDwsym, files[k].base)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    // Determines whether test results can be streamed to a socket.
    #if GTEST_OS_LINUX
    # define GTEST_CAN_STREAM_RESULTS_ 1
    #endif
    
    // Defines some utility macros.
    
    // The GNU compiler emits a warning if nested "if" statements are followed by
    // an "else" statement and braces are not used to explicitly disambiguate the
    // "else" binding.  This leads to problems with code like:
    //
    //   if (gate)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/debug.go

    	case 8:
    		return ctxt.Arch.ByteOrder.Uint64(buf)
    	default:
    		panic("unexpected pointer size")
    	}
    
    }
    
    // setupLocList creates the initial portion of a location list for a
    // user variable. It emits the encoded start/end of the range and a
    // placeholder for the size. Return value is the new list plus the
    // slot in the list holding the size (to be updated later).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  6. src/runtime/mbitmap.go

    // heapBits for user arena spans is exposed through a dummy type descriptor, so the byte
    // ordering needs to match the same byte ordering the compiler would emit. The compiler always
    // emits the bitmap data in little endian byte ordering, so on big endian platforms these
    // uintptrs will have their byte orders swapped from what they normally would be.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    //   - github.com/cloudwego/frugal
    //
    // Do not remove or change the type signature.
    // See go.dev/issue/67401.
    //
    //go:linkname writeBarrier
    var writeBarrier struct {
    	enabled bool    // compiler emits a check of this before calling write barrier
    	pad     [3]byte // compiler uses 32-bit load for "enabled" field
    	alignme uint64  // guarantee alignment so that compiler can use a 32 or 64-bit load
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/load.go

    		} else if prev != mod.Path {
    			ld.error(fmt.Errorf("%s@%s used for two different module paths (%s and %s)", src.Path, src.Version, prev, mod.Path))
    		}
    	}
    }
    
    // checkTidyCompatibility emits an error if any package would be loaded from a
    // different module under rs than under ld.requirements.
    func (ld *loader) checkTidyCompatibility(ctx context.Context, rs *Requirements, compatVersion string) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    === Potential breaking changes
    
    ==== Kotlin DSL scripts emit compilation warnings
    
    Compilation warnings from Kotlin DSL scripts are printed to the console output.
    For example, the use of deprecated APIs in Kotlin DSL will emit warnings each time the script is compiled.
    
    This is a potentially breaking change if you are consuming the console output of Gradle builds.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  10. cluster/gce/windows/k8s-node-setup.psm1

    }
    
    # Writes a not-implemented warning with $Message to the console and exits the
    # script.
    function Log_NotImplemented {
      param (
        [parameter(Mandatory=$true)] [string]$Message
      )
      Log-Output "Not implemented yet: ${Message}" -Fatal
    }
    
    # Fails and exits if the route to the GCE metadata server is not present,
    # otherwise does nothing and emits nothing.
    function Verify_GceMetadataServerRouteIsPresent {
      Try {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
Back to top