Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 234 for ants (0.1 sec)

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

      google.protobuf.Struct podAnnotations = 11 [deprecated = true];
    
      // Pod anti-affinity label selector.
      //
      // Specify the pod anti-affinity that allows you to constrain which nodes
      // your pod is eligible to be scheduled based on labels on pods that are
      // already running on the node rather than based on labels on nodes.
      // There are currently two types of anti-affinity:
      //    "requiredDuringSchedulingIgnoredDuringExecution"
    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. src/internal/coverage/cformat/format.go

    // - a table storing execution count for the coverable units in each func
    type pstate struct {
    	// slice of unique functions
    	funcs []fnfile
    	// maps function to index in slice above (index acts as function ID)
    	funcTable map[fnfile]uint32
    
    	// A table storing coverage counts for each coverable unit.
    	unitTable map[extcu]uint32
    }
    
    // extcu encapsulates a coverable unit within some function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.api.java.archives.internal
    
    import org.apache.tools.ant.taskdefs.Manifest
    import org.apache.tools.ant.taskdefs.Manifest.Attribute
    import org.gradle.api.Action
    import org.gradle.api.internal.file.FileResolver
    import org.gradle.api.internal.provider.DefaultProperty
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  4. src/sync/poolqueue.go

    	}
    
    	// The head slot is free, so we own it.
    	if val == nil {
    		val = dequeueNil(nil)
    	}
    	*(*any)(unsafe.Pointer(slot)) = val
    
    	// Increment head. This passes ownership of slot to popTail
    	// and acts as a store barrier for writing the slot.
    	d.headTail.Add(1 << dequeueBits)
    	return true
    }
    
    // popHead removes and returns the element at the head of the queue.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 18:12:29 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. licenses/istio.io/client-go/LICENSE

       8. Limitation of Liability. In no event and under no legal theory,
          whether in tort (including negligence), contract, or otherwise,
          unless required by applicable law (such as deliberate and grossly
          negligent acts) or agreed to in writing, shall any Contributor be
          liable to You for damages, including any direct, indirect, special,
          incidental, or consequential damages of any character arising as a
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 18:53:28 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. LICENSES/vendor/k8s.io/gengo/v2/LICENSE

       8. Limitation of Liability. In no event and under no legal theory,
          whether in tort (including negligence), contract, or otherwise,
          unless required by applicable law (such as deliberate and grossly
          negligent acts) or agreed to in writing, shall any Contributor be
          liable to You for damages, including any direct, indirect, special,
          incidental, or consequential damages of any character arising as a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:39 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  7. src/go/ast/ast.go

    	// be conservative and guard against bad ASTs
    	if len(f.List) > 0 {
    		return f.List[0].Pos()
    	}
    	return token.NoPos
    }
    
    func (f *FieldList) End() token.Pos {
    	if f.Closing.IsValid() {
    		return f.Closing + 1
    	}
    	// the list should not be empty in this case;
    	// be conservative and guard against bad ASTs
    	if n := len(f.List); n > 0 {
    		return f.List[n-1].End()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 28 21:32:41 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  8. src/go/types/operand.go

    	constant_                    // operand is a constant; the operand's typ is a Basic type
    	variable                     // operand is an addressable variable
    	mapindex                     // operand is a map index expression (acts like a variable on lhs, commaok on rhs of an assignment)
    	value                        // operand is a computed value
    	nilvalue                     // operand is the nil value - only used by types2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/log/slog/logger.go

    	}
    	return l.Handler().Enabled(ctx, level)
    }
    
    // NewLogLogger returns a new [log.Logger] such that each call to its Output method
    // dispatches a Record to the specified handler. The logger acts as a bridge from
    // the older log API to newer structured logging handlers.
    func NewLogLogger(h Handler, level Level) *log.Logger {
    	return log.New(&handlerWriter{h, level, true}, "", 0)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_messages.go

    	}
    	*out = uint64(hi)<<32 | uint64(lo)
    	return true
    }
    
    // readUint8LengthPrefixed acts like s.ReadUint8LengthPrefixed, but targets a
    // []byte instead of a cryptobyte.String.
    func readUint8LengthPrefixed(s *cryptobyte.String, out *[]byte) bool {
    	return s.ReadUint8LengthPrefixed((*cryptobyte.String)(out))
    }
    
    // readUint16LengthPrefixed acts like s.ReadUint16LengthPrefixed, but targets a
    // []byte instead of a cryptobyte.String.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top