Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 907 for happen (0.09 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

                    buildLogicInputHasChanged(valueSource)
                } else {
                    null
                }
            }.getOrMapFailure { failure ->
                // This can only happen if someone ignored configuration cache problems and still stored the entry.
                // We're invalidating the cache to save the user a manual "rm -rf .gradle/configuration-cache", as there is no way out.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. src/runtime/tracestack.go

    // If pc is a wrapper, it returns the PC of the wrapped function. Otherwise it
    // returns pc.
    func startPCForTrace(pc uintptr) uintptr {
    	f := findfunc(pc)
    	if !f.valid() {
    		return pc // may happen for locked g in extra M since its pc is 0.
    	}
    	w := funcdata(f, abi.FUNCDATA_WrapInfo)
    	if w == nil {
    		return pc // not a wrapper
    	}
    	return f.datap.textAddr(*(*uint32)(w))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:56 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. pkg/kube/inject/webhook.go

    	for _, c := range podSpec.InitContainers {
    		stat.InitContainers = append(stat.InitContainers, c.Name)
    	}
    	for _, c := range podSpec.Containers {
    		stat.Containers = append(stat.Containers, c.Name)
    	}
    	for _, c := range podSpec.Volumes {
    		stat.Volumes = append(stat.Volumes, c.Name)
    	}
    	for _, c := range podSpec.ImagePullSecrets {
    		stat.ImagePullSecrets = append(stat.ImagePullSecrets, c.Name)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/deploymentcontroller.go

    		}
    		portNums.Insert(int32(l.Port))
    		name := string(l.Name)
    		if name == "" {
    			// Should not happen since name is required, but in case an invalid resource gets in...
    			name = fmt.Sprintf("%s-%d", strings.ToLower(string(l.Protocol)), i)
    		}
    		appProtocol := strings.ToLower(string(l.Protocol))
    		svcPorts = append(svcPorts, corev1.ServicePort{
    			Name:        name,
    			Port:        int32(l.Port),
    			AppProtocol: &appProtocol,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 21:43:20 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/ByteSourceTest.java

        // Slice it starting at offset 10.
        ByteSource slice = source.slice(10, 5);
    
        // Open a stream to the slice.
        InputStream in = slice.openStream();
    
        // Append 10 more bytes to the source.
        source.append(newPreFilledByteArray(5, 10));
    
        // The stream reports no bytes... importantly, it doesn't read the byte at index 5 when it
        // should be reading the byte at index 10.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/test.go

    					continue
    				}
    				seen[p1] = true
    				pmain.Internal.Imports = append(pmain.Internal.Imports, p1)
    			}
    		}
    
    		allTestImports := make([]*Package, 0, len(pmain.Internal.Imports)+len(imports)+len(ximports))
    		allTestImports = append(allTestImports, pmain.Internal.Imports...)
    		allTestImports = append(allTestImports, imports...)
    		allTestImports = append(allTestImports, ximports...)
    		setToolFlags(allTestImports...)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  7. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    				return metav1.Time{}, fmt.Errorf("unable to find the time when the Job %s/%s finished", finishedJob.Namespace, finishedJob.Name)
    			}
    			return c.LastTransitionTime, nil
    		}
    	}
    
    	// This should never happen if the Jobs has finished
    	return metav1.Time{}, fmt.Errorf("unable to find the status of the finished Job %s/%s", finishedJob.Namespace, finishedJob.Name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. internal/ioutil/ioutil.go

    		},
    	}
    )
    
    // WriteOnCloser implements io.WriteCloser and always
    // executes at least one write operation if it is closed.
    //
    // This can be useful within the context of HTTP. At least
    // one write operation must happen to send the HTTP headers
    // to the peer.
    type WriteOnCloser struct {
    	io.Writer
    	hasWritten bool
    }
    
    func (w *WriteOnCloser) Write(p []byte) (int, error) {
    	w.hasWritten = true
    	return w.Writer.Write(p)
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  9. src/crypto/internal/edwards25519/scalar.go

    }
    
    // Bytes returns the canonical 32-byte little-endian encoding of s.
    func (s *Scalar) Bytes() []byte {
    	// This function is outlined to make the allocations inline in the caller
    	// rather than happen on the heap.
    	var encoded [32]byte
    	return s.bytes(&encoded)
    }
    
    func (s *Scalar) bytes(out *[32]byte) []byte {
    	var ss fiatScalarNonMontgomeryDomainFieldElement
    	fiatScalarFromMontgomery(&ss, &s.s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/aggregate/controller.go

    		if len(instances) > 0 {
    			out = append(out, instances...)
    		}
    	}
    
    	return out
    }
    
    func (c *Controller) GetProxyWorkloadLabels(proxy *model.Proxy) labels.Instance {
    	clusterID := nodeClusterID(proxy)
    	for _, r := range c.GetRegistries() {
    		// If proxy clusterID unset, we may find incorrect workload label.
    		// This can not happen in k8s env.
    		if clusterID == "" || clusterID == r.Cluster() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top