Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 619 for seal (0.75 sec)

  1. cmd/kubemark/app/hollow_node.go

    	fs.BoolVar(&c.UseRealProxier, "use-real-proxier", true, "Has no effect.")
    	_ = fs.MarkDeprecated("use-real-proxier", "This flag is deprecated and will be removed in a future release.")
    	fs.DurationVar(&c.ProxierSyncPeriod, "proxier-sync-period", 30*time.Second, "Has no effect.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 08:58:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/runtime/memmove_amd64.s

    //
    // Permission is hereby granted, free of charge, to any person obtaining a copy
    // of this software and associated documentation files (the "Software"), to deal
    // in the Software without restriction, including without limitation the rights
    // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    // copies of the Software, and to permit persons to whom the Software is
    // furnished to do so, subject to the following conditions:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  3. pkg/ledger/smt.go

    Permission is hereby granted, free of charge, to any person obtaining a copy
    of this software and associated documentation files (the "Software"), to deal
    in the Software without restriction, including without limitation the rights
    to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    copies of the Software, and to permit persons to whom the Software is
    furnished to do so, subject to the following conditions:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 08 16:43:05 UTC 2023
    - 14K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cache/cache.go

    	// While not ideal, this is also not a correctness problem, so we
    	// don't make a big deal about it. In particular, we leave the action
    	// cache entries writable specifically so that they can be overwritten.
    	//
    	// Setting GODEBUG=gocacheverify=1 does make a big deal:
    	// in verify mode we are double-checking that the cache entries
    	// are entirely reproducible. As just noted, this may be unrealistic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. src/os/file_unix.go

    		}
    	}
    	err = ignoringEINTR(func() error {
    		return syscall.Rename(oldname, newname)
    	})
    	if err != nil {
    		return &LinkError{"rename", oldname, newname, err}
    	}
    	return nil
    }
    
    // file is the real representation of *File.
    // The extra level of indirection ensures that no clients of os
    // can overwrite this data, which could cause the finalizer
    // to close the wrong file descriptor.
    type file struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  6. licenses/github.com/spf13/afero/LICENSE.txt

          worldwide, non-exclusive, no-charge, royalty-free, irrevocable
          (except as stated in this section) patent license to make, have made,
          use, offer to sell, sell, import, and otherwise transfer the Work,
          where such license applies only to those patent claims licensable
          by such Contributor that are necessarily infringed by their
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 9.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/386Ops.go

    				clobbers: buildReg("DI SI CX"),
    			},
    			faultOnNilArg0: true,
    			faultOnNilArg1: true,
    		},
    
    		// (InvertFlags (CMPL a b)) == (CMPL b a)
    		// So if we want (SETL (CMPL a b)) but we can't do that because a is a constant,
    		// then we do (SETL (InvertFlags (CMPL b a))) instead.
    		// Rewrites will convert this to (SETG (CMPL b a)).
    		// InvertFlags is a pseudo-op which can't appear in assembly output.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/listener_inbound.go

    	// present to handle all unmatched traffic. These have a few naming and quirks that require
    	// different configuration.
    	passthrough bool
    
    	// bindToPort determines if this chain should form a real listener that actually binds to a real port,
    	// or if it should just be a filter chain part of the 'virtual inbound' listener.
    	bindToPort bool
    
    	// hbone determines if this is coming from an HBONE request originally
    	hbone bool
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/versioning/versioning_test.go

    func (d *testDecodable) GroupVersionKind() schema.GroupVersionKind       { return d.gvk }
    func (d *testDecodable) DeepCopyObject() runtime.Object {
    	// no real deepcopy because these tests check for pointer equality
    	return d
    }
    
    type testNestedDecodable struct {
    	Other string
    	Value int `json:"value"`
    
    	gvk          schema.GroupVersionKind
    	nestedCalled bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 23 17:04:19 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/ops/math_ops.cc

    //   of complex numbers that are the complex conjugate of each element in
    //   `input`. The complex numbers in `input` must be of the form \\(a + bj\\),
    //   where *a* is the real part and *b* is the imaginary part.
    //
    //   The complex conjugate returned by this operation is of the form \\(a -
    //   bj\\).
    //
    //   For example:
    //
    //   ```
    //   # tensor 'input' is [-2.25 + 4.75j, 3.25 + 5.75j]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 10 19:11:36 UTC 2022
    - 12.2K bytes
    - Viewed (0)
Back to top