Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 155 for cheese (0.18 sec)

  1. security/pkg/nodeagent/sds/sdsservice.go

    	// case we always write a certificate. A workload can technically run without any mTLS/CA
    	// configured, in which case this will fail; if it becomes noisy we should disable the entire SDS
    	// server in these cases.
    	go func() {
    		// TODO: do we need max timeout for retry, seems meaningless to retry forever if it never succeed
    		b := backoff.NewExponentialBackOff(backoff.DefaultOption())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/objfile.go

    	copy(b[:], s.P)
    	return b
    }
    
    // Compute the content hash for a content-addressable symbol.
    // We build a content hash based on its content and relocations.
    // Depending on the category of the referenced symbol, we choose
    // different hash algorithms such that the hash is globally
    // consistent.
    //   - For referenced content-addressable symbol, its content hash
    //     is globally consistent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/func.go

    	} else {
    		v = f.Entry.NewValue0(src.NoXPos, op, t)
    	}
    	f.constants[c] = append(vv, v)
    	v.InCache = true
    	return v
    }
    
    // These magic auxint values let us easily cache non-numeric constants
    // using the same constants map while making collisions unlikely.
    // These values are unlikely to occur in regular code and
    // are easy to grep for in case of bugs.
    const (
    	constSliceMagic       = 1122334455
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  4. pkg/istio-agent/agent_test.go

    			return a
    		}).Check(t, security.WorkloadKeyCertResourceName, security.RootCertReqResourceName)
    
    		// Ensure we output the certs
    		checkCertsWritten(t, dir)
    
    		// We rotate immediately, so we expect these files to be constantly updated
    		go sds[security.WorkloadKeyCertResourceName].DrainResponses()
    		expectFileChanged(t, filepath.Join(dir, "cert-chain.pem"), filepath.Join(dir, "key.pem"))
    	})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  5. src/internal/trace/internal/oldtrace/parser.go

    // produce a correct interleaving of the batches. To do this we take first
    // unmerged event from each batch (frontier). Then choose subset that is "ready"
    // to be merged, that is, events for which all dependencies are already merged.
    // Then we choose event with the lowest timestamp from the subset, merge it and
    // repeat. This approach ensures that we form a consistent stream even if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  6. cluster/log-dump/log-dump.sh

        node_logfiles_all="${node_logfiles_all} ${hollow_node_logfiles}"
      fi
    
      linux_nodes_selected_for_logs=()
      if [[ -n "${LOGDUMP_ONLY_N_RANDOM_NODES:-}" ]]; then
        # We randomly choose 'LOGDUMP_ONLY_N_RANDOM_NODES' many nodes for fetching logs.
        for index in $(shuf -i 0-$(( ${#node_names[*]} - 1 )) -n "${LOGDUMP_ONLY_N_RANDOM_NODES}")
        do
          linux_nodes_selected_for_logs+=("${node_names[$index]}")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 21:15:57 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. src/runtime/netpoll.go

    //
    // func netpollIsPollDescriptor(fd uintptr) bool
    //     Reports whether fd is a file descriptor used by the poller.
    
    // Error codes returned by runtime_pollReset and runtime_pollWait.
    // These must match the values in internal/poll/fd_poll_runtime.go.
    const (
    	pollNoError        = 0 // no error
    	pollErrClosing     = 1 // descriptor is closed
    	pollErrTimeout     = 2 // I/O timeout
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. JavadocStyleGuide.md

    /**
     * Use the {@code Project} instance to configure the project.
     */
    ```
    
    ### 1.1.7 Block tags
    
    Any of the standard "block tags" that are used appear in the order `@param`, `@return`, `@throws`, `@deprecated`, and these four types never appear with an empty description:
    
    ```java
    /**
     * @param url an absolute URL giving the base location of the image
     * @param name the location of the image, relative to the url argument
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ProjectExtensions.kt

     */
    fun Project.buildscript(action: ScriptHandlerScope.() -> Unit): Unit =
        ScriptHandlerScopeInternal(project, buildscript).action()
    
    
    /**
     * Sets the default tasks of this project. These are used when no tasks names are provided when
     * starting the build.
     */
    @Suppress("nothing_to_inline")
    inline fun Project.defaultTasks(vararg tasks: Task) {
        defaultTasks(*tasks.map { it.name }.toTypedArray())
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ResolveState.java

            // TODO #24641: Why are the numbers and operations here the way they are?
            //  Are they up-to-date? We should be able to test if these values are still optimal.
            int estimate = (int) (512 * Math.log(numDependencies));
            return Math.max(10, estimate);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 16.7K bytes
    - Viewed (0)
Back to top