Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 121 for derp (0.34 sec)

  1. src/crypto/x509/x509_test.go

    		t.Error("Unexpectedly cNonNil is equal to cNil1")
    	}
    }
    
    func TestMismatchedSignatureAlgorithm(t *testing.T) {
    	der, _ := pem.Decode([]byte(rsaPSSSelfSignedPEM))
    	if der == nil {
    		t.Fatal("Failed to find PEM block")
    	}
    
    	cert, err := ParseCertificate(der.Bytes)
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	if err = cert.CheckSignature(ECDSAWithSHA256, nil, nil); err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/gateway_test.go

    	// Make sure we did not overwrite our deployment or service
    	dep, err := t.Clusters().Default().Kube().AppsV1().Deployments(apps.Namespace.Name()).
    		Get(context.Background(), "managed-owner-istio", metav1.GetOptions{})
    	assert.NoError(t, err)
    	assert.Equal(t, dep.Labels[constants.ManagedGatewayLabel], "")
    	assert.Equal(t, dep.Spec.Template.Spec.Containers[0].Image, image)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    	finalClose() error
    }
    
    // addDep notes that x now depends on dep, and x's finalClose won't be
    // called until all of x's dependencies are removed with removeDep.
    func (db *DB) addDep(x finalCloser, dep any) {
    	db.mu.Lock()
    	defer db.mu.Unlock()
    	db.addDepLocked(x, dep)
    }
    
    func (db *DB) addDepLocked(x finalCloser, dep any) {
    	if db.dep == nil {
    		db.dep = make(map[finalCloser]depSet)
    	}
    	xdep := db.dep[x]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/micro_time.go

    //
    // +protobuf.options.marshal=false
    // +protobuf.as=Timestamp
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type MicroTime struct {
    	time.Time `protobuf:"-"`
    }
    
    // DeepCopy returns a deep-copy of the MicroTime value.  The underlying time.Time
    // type is effectively immutable in the time API, so it is safe to
    // copy-by-assign, despite the presence of (unexported) Pointer fields.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/aggregate/controller.go

    // GetRegistries returns a copy of all registries
    func (c *Controller) GetRegistries() []serviceregistry.Instance {
    	c.storeLock.RLock()
    	defer c.storeLock.RUnlock()
    
    	// copy registries to prevent race, no need to deep copy here.
    	out := make([]serviceregistry.Instance, len(c.registries))
    	for i := range c.registries {
    		out[i] = c.registries[i]
    	}
    	return out
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  6. pilot/pkg/model/destination_rule.go

    			// at the same time added as a unique entry in the processedDestRules.
    			if bothWithoutSelector || (rule.GetWorkloadSelector() != nil && selectorsMatch) {
    				addRuleToProcessedDestRules = false
    			}
    
    			// Deep copy destination rule, to prevent mutate it later when merge with a new one.
    			// This can happen when there are more than one destination rule of same host in one namespace.
    			copied := mdr.rule.DeepCopy()
    			mdr.rule = &copied
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 07:22:29 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/shell.go

    				// Don't know why, sometimes this comes out with slashes, not backslashes.
    				wdir := strings.ReplaceAll(dir, "\\", "/")
    				out = replacePrefix(out, wdir, reldir)
    			}
    		}
    		dirP := filepath.Dir(dir)
    		if dir == dirP {
    			break
    		}
    		dir = dirP
    	}
    
    	// Fix up output referring to cgo-generated code to be more readable.
    	// Replace x.go:19[/tmp/.../x.cgo1.go:18] with x.go:19.
    	// Replace *[100]_Ctype_foo with *[100]C.foo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. settings.gradle.kts

                    element(child)
                }
            }
            node("end")
            node("style ${platform.id} fill:#c2e0f4,stroke:#3498db,stroke-width:2px,color:#000;")
            for (dep in platform.uses) {
                node("${platform.id} --> $dep")
            }
        }
    
        private fun NodeWriter.element(element: ArchitectureElement) {
            println()
            node("${element.id}[\"${element.name} module\"]")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/time.go

    //
    // +protobuf.options.marshal=false
    // +protobuf.as=Timestamp
    // +protobuf.options.(gogoproto.goproto_stringer)=false
    type Time struct {
    	time.Time `protobuf:"-"`
    }
    
    // DeepCopyInto creates a deep-copy of the Time value.  The underlying time.Time
    // type is effectively immutable in the time API, so it is safe to
    // copy-by-assign, despite the presence of (unexported) Pointer fields.
    func (t *Time) DeepCopyInto(out *Time) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:09 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/dra/plugin/noderesources.go

    	cancel func(reason error)
    
    	// resources is protected by the nodeResourcesController read/write lock.
    	// When receiving updates from the driver, the entire slice gets replaced,
    	// so it is okay to not do a deep copy of it. Only retrieving the slice
    	// must be protected by a read lock.
    	resources []*resourceapi.ResourceModel
    }
    
    // startNodeResourcesController constructs a new controller and starts it.
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 20:12:53 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top