Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 41 for rewrites (0.88 sec)

  1. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // See NeverInjectSelector.
      repeated k8s.io.apimachinery.pkg.apis.meta.v1.LabelSelector alwaysInjectSelector = 12;
    
      //  If true, webhook or istioctl injector will rewrite PodSpec for liveness health check to redirect request to sidecar. This makes liveness check work even when mTLS is enabled.
      google.protobuf.BoolValue rewriteAppHTTPProbe = 16;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.31.md

    - Promoted `generateName` retries to beta, and made the `NameGenerationRetries` feature gate
      enabled by default.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  3. src/crypto/tls/tls_test.go

    			// connection, so we're past the Dialer's dial and now blocked
    			// in a handshake. Cancel our context and see if we get unstuck.
    			// (Our TCP listener above never reads or writes, so the Handshake
    			// would otherwise be stuck forever)
    			cancel()
    			return len(b), nil
    		}),
    		ServerName: "foo",
    	}}
    	_, err := d.DialContext(ctx, "tcp", ln.Addr().String())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/devicemanager/manager_test.go

    	as.True(ok)
    	as.Equal(int64(3), val.Value())
    	val, ok = allocatable[v1.ResourceName(resourceName2)]
    	as.True(ok)
    	as.Equal(int64(0), val.Value())
    	as.Empty(removed)
    	// Writes and re-reads checkpoints. Verifies we create a stopped endpoint
    	// for resourceName2, its capacity is set to zero, and we still consider
    	// it as a DevicePlugin resource. This makes sure any pod that was scheduled
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  5. cmd/iam.go

    				iamLogIf(ctx, nerr.Err)
    			}
    		}
    	}
    
    	return nil
    }
    
    // CreateUser - create new user credentials and policy, if user already exists
    // they shall be rewritten with new inputs.
    func (sys *IAMSys) CreateUser(ctx context.Context, accessKey string, ureq madmin.AddOrUpdateUserReq) (updatedAt time.Time, err error) {
    	if !sys.Initialized() {
    		return updatedAt, errServerNotInitialized
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. src/runtime/mprof.go

    			doRecordGoroutineProfile(gp1, pcbuf)
    			gp1.goroutineProfiled.Store(goroutineProfileSatisfied)
    		}
    		releasem(mp)
    	}
    }
    
    // doRecordGoroutineProfile writes gp1's call stack and labels to an in-progress
    // goroutine profile. Preemption is disabled.
    //
    // This may be called via tryRecordGoroutineProfile in two ways: by the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

       * concurrently readable hash table. The map supports non-blocking reads and concurrent writes
       * across different segments.
       *
       * The page replacement algorithm's data structures are kept casually consistent with the map. The
       * ordering of writes to a segment is sequentially consistent. An update to the map and recording
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 90.8K bytes
    - Viewed (0)
  8. src/cmd/link/internal/loader/loader.go

    			// hash("A") == hash("A\0\0\0").
    			// So when two symbols have the same hash, we need to use the one with
    			// larger size.
    			if siz > s.size {
    				// New symbol has larger size, use the new one. Rewrite the index mapping.
    				l.objSyms[s.sym] = objSym{r.objidx, li}
    				addToHashMap(symAndSize{s.sym, siz})
    			}
    			return s.sym
    		}
    		addToHashMap(symAndSize{i, siz})
    		addToGlobal()
    		return i
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    // sure that a PodSchedulingContext object, if it exists, is definitely not going to
    // be needed anymore and can delete it. This is a one-shot thing, there won't
    // be any retries.  This is okay because it should usually work and in those
    // cases where it doesn't, the garbage collector will eventually clean up.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  10. cmd/erasure-object.go

    }
    
    // PutObject - creates an object upon reading from the input stream
    // until EOF, erasure codes the data across all disk and additionally
    // writes `xl.meta` which carries the necessary metadata for future
    // object operations.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top